Skip to content

Commit 4c90aa1

Browse files
authored
add command to install pytest in pytest workflow (#13)
* add command to install pytest in pytest workflow * move flake8 installation to setup.py
1 parent fa3ee15 commit 4c90aa1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install dependencies
2222
run: |
2323
python -m pip install --upgrade pip
24-
pip install flake8
24+
pip install -e '.[testing]'
2525
2626
- name: Lint with flake8
2727
run: |

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup
22

3-
requirements = ['aiodns', 'aiohttp>=3.7.4', 'backoff', 'base58', 'loguru']
3+
requirements = ['aiodns', 'aiohttp>=3.7.4', 'backoff', 'base58', 'flake8', 'loguru']
44

55
setup(
66
name='pythclient',

0 commit comments

Comments
 (0)