Skip to content

Commit

Permalink
run python file just to be sure
Browse files Browse the repository at this point in the history
  • Loading branch information
cootshk committed Nov 2, 2023
1 parent b30ad79 commit 91e9a6d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,15 @@ jobs:
python -m pip install --upgrade pip
pip install pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
- name: Get into correct directory
run: |
CURRENT_DIR=$(pwd)
cd $CURRENT_DIR
if [[ -d "tests" ]]; then cd tests; fi
cd .. # hopefully we are back in the root directory
- name: Run python file
run: |
python tables.py
- name: Test with pytest
run: |
pytest tests

0 comments on commit 91e9a6d

Please sign in to comment.