Skip to content

Commit c5e31d5

Browse files
committed
updated tests workflow
1 parent 1465e6d commit c5e31d5

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/tests.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ jobs:
1313
strategy:
1414
matrix:
1515
python-version:
16-
- "3.7"
1716
- "3.8"
1817
- "3.9"
1918
- "3.10"
@@ -32,15 +31,15 @@ jobs:
3231
python-version: ${{ matrix.python-version }}
3332
- name: Install dependencies
3433
run: |
35-
python -m pip install --upgrade pip
36-
pip install -r ./requirements.txt
37-
pip install -r ./requirements-dev.txt
38-
pip install coverage
34+
python -m pip install --upgrade pip
35+
pip install -r ./requirements.txt
36+
pip install -r ./requirements-dev.txt
37+
pip install coverage
3938
- name: Lint with flake8
4039
run: |
4140
flake8 ./zabbix_utils/ --count --select=E9,F63,F7,F82 --show-source --statistics
4241
flake8 ./zabbix_utils/ --count --exit-zero --max-complexity=20 --max-line-length=127 --statistics
4342
- name: Test with unittest
4443
run: |
45-
python -m unittest discover -s ./tests -p 'test_*.py'
44+
python -m unittest discover -s ./tests -p 'test_*.py'
4645

0 commit comments

Comments
 (0)