diff --git a/.gitignore b/.gitignore index 11041c7..9992834 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.egg-info +**/__pycache__ diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index 6204dbf..d9b59f2 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -11,7 +11,7 @@ steps: test: image: ghcr.io/astral-sh/uv:alpine commands: - - pytest -s test/basic.py + - python -m pytest -s test/basic.py build: image: ghcr.io/astral-sh/uv:alpine commands: diff --git a/tests/basic.py b/tests/basic.py new file mode 100644 index 0000000..30e2c41 --- /dev/null +++ b/tests/basic.py @@ -0,0 +1,2 @@ +def test_foo(): + assert True