Initialize boilerplate #1

Merged
val merged 5 commits from ci into main 2022-09-14 16:33:41 +00:00
3 changed files with 6 additions and 1 deletions
Showing only changes of commit 7c9a3b5b50 - Show all commits

View File

@ -19,7 +19,7 @@ pipeline:
test:
image: python:${PYTHON_VERSION}
commands:
- pip3 install .
- pip3 install . pytest
- pytest
matrix:

2
opdb/foo_test.py Normal file
View File

@ -0,0 +1,2 @@
def test_foo():
pass

View File

@ -9,3 +9,6 @@ dependencies = [
"requests",
"luigi",
]
[tool.pytest.ini_options]
python_files = "*_test.py"