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
|
||||
jobs:
|
||||
|
||||
test:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Dependencies installieren
|
||||
run: |
|
||||
python3 -m venv .venv
|
||||
.venv/bin/pip install -r requirements.txt --no-cache-dir
|
||||
run: pip3 install -r requirements.txt --no-cache-dir
|
||||
|
||||
- name: Tests ausführen
|
||||
run: .venv/bin/pytest tests/ -v
|
||||
run: pytest tests/ -v
|
||||
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
Loading…
Reference in a new issue