Skip to content

Commit

Permalink
hard check for tests/ dir
Browse files Browse the repository at this point in the history
  • Loading branch information
cootshk committed Nov 2, 2023
1 parent 9aeb62e commit f444517
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,7 @@ jobs:
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
pytest tests
CURRENT_DIR=$(pwd)
cd $CURRENT_DIR
if [[ -d "tests" ]]; then cd tests; fi
pytest .
1 change: 0 additions & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
import ..tables as t

0 comments on commit f444517

Please sign in to comment.