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