Test CI without subdirectory
Some checks failed
CI / test (push) Failing after 1s

This commit is contained in:
2026-01-31 22:09:32 +00:00
parent 6a398ec902
commit f8219cd676

View File

@@ -5,10 +5,10 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
- name: Setup working directory
run: |
pwd
ls -la
ls -la man-card-project/ 2>/dev/null || true
- name: Setup Python
run: |
@@ -17,14 +17,8 @@ jobs:
- name: Install dependencies
run: |
if [ -f man-card-project/requirements.txt ]; then
cd man-card-project
fi
pip3 install -r requirements.txt
- name: Run tests
run: |
if [ -f man-card-project/requirements.txt ]; then
cd man-card-project
fi
pytest3 tests/ -v