Skip to content

Commit 8f843b9

Browse files
committed
Update python tests job
Signed-off-by: Anish Asthana <[email protected]>
1 parent 11c3b41 commit 8f843b9

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Diff for: .github/workflows/python-app.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ on:
1010
branches: [ main ]
1111

1212
jobs:
13-
build:
13+
unit-tests:
1414

1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919
- name: Set up Python 3.9
2020
uses: actions/setup-python@v2
2121
with:
@@ -28,9 +28,6 @@ jobs:
2828
pip install coverage
2929
pip install black==22.3.0
3030
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31-
- name: Check formatting with black
32-
run: |
33-
black --check .
3431
- name: Test with pytest and check coverage
3532
run: |
3633
coverage run -m --source=src pytest -v tests/unit_test.py

0 commit comments

Comments
 (0)