We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6368696 commit c6c0600Copy full SHA for c6c0600
.github/workflows/python-package.yml
@@ -27,9 +27,9 @@ jobs:
27
run: |
28
python -m pip install --upgrade pip
29
python -m pip install flake8 pylint coveralls
30
+ if python --version 2>&1 | grep -q "Python 2"; then pip install mock rsa==4.0; fi
31
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
32
pip install .
- if python --version 2>&1 | grep -q "Python 2"; then pip install mock; fi
33
if python --version 2>&1 | grep -q "Python 3.7" || python --version 2>&1 | grep -q "Python 3.8" || python --version 2>&1 | grep -q "Python 3.9"; then pip install aiofiles; fi
34
- name: Lint with pylint and flake8
35
0 commit comments