This commit is contained in:
Dax Pryce 2022-10-13 14:06:15 -07:00 коммит произвёл GitHub
Родитель 0b2d391e7b
Коммит e707c5564e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 12 удалений

12
.github/workflows/validate_on_push.yml поставляемый
Просмотреть файл

@ -21,18 +21,6 @@ jobs:
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 ./topologic ./tests --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 ./topologic ./tests --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest -v tests topologic --doctest-modules
env:
SKIP_TEST_35: true
- name: Build with setuptools
run: |
python setup.py build sdist