This commit is contained in:
Kreyren 2020-02-07 19:36:21 +00:00
parent 459e47b983
commit d1cf4f1a1e

@ -204,7 +204,7 @@ jobs:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: | run: |
python3 -m pip install --upgrade pip python -m pip install --upgrade pip
pip3 install -r requirements.txt pip3 install -r requirements.txt
- name: Lint with flake8 - name: Lint with flake8
run: | run: |
@ -215,5 +215,5 @@ jobs:
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest - name: Test with pytest
run: | run: |
pip3 install pytest pip install pytest
pytest pytest src/bin/main.py