This commit is contained in:
@@ -6,7 +6,9 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
run: pwd && ls -la
|
run: |
|
||||||
|
ls -la
|
||||||
|
ls -la man-card-project/ 2>/dev/null || true
|
||||||
|
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
run: |
|
run: |
|
||||||
@@ -15,7 +17,14 @@ 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: pytest3 tests/ -v
|
run: |
|
||||||
|
if [ -f man-card-project/requirements.txt ]; then
|
||||||
|
cd man-card-project
|
||||||
|
fi
|
||||||
|
pytest3 tests/ -v
|
||||||
Reference in New Issue
Block a user