fix: again test job in deployment file
This commit is contained in:
parent
76cb841973
commit
c4883ef22e
1 changed files with 3 additions and 5 deletions
|
|
@ -5,19 +5,17 @@ on:
|
||||||
- main
|
- main
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Dependencies installieren
|
- name: Dependencies installieren
|
||||||
run: |
|
run: pip3 install -r requirements.txt --no-cache-dir
|
||||||
python3 -m venv .venv
|
|
||||||
.venv/bin/pip install -r requirements.txt --no-cache-dir
|
|
||||||
|
|
||||||
- name: Tests ausführen
|
- name: Tests ausführen
|
||||||
run: .venv/bin/pytest tests/ -v
|
run: pytest tests/ -v
|
||||||
|
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue