not install pytest & black in github action

This commit is contained in:
Son NK 2020-08-27 10:24:05 +02:00
parent 830299ce2c
commit 03b8a6f2e9
1 changed files with 4 additions and 6 deletions

View File

@ -27,19 +27,17 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-
- name: Test formatting
run: |
pip install black
black --check .
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test formatting
run: |
black --check .
- name: Test with pytest
run: |
pip install pytest
pytest
- name: Publish to Docker Registry