зеркало из
1
0
Форкнуть 0

Add a travis check that code is black formatted (#43)

This commit is contained in:
toshetah 2018-08-02 10:02:27 +03:00 коммит произвёл GitHub
Родитель 0f9f8814a5
Коммит c7c78cf262
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -7,6 +7,8 @@ python:
install:
- pip install -r dev_requirements.txt
- pip install --force-reinstall azure-nspkg==1.0.0
before_script:
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then black . --line-length 100 --check; fi
script:
- pytest azure-kusto-data
- pytest azure-kusto-ingest

Просмотреть файл

@ -1,3 +1,4 @@
-e azure-kusto-data
-e azure-kusto-ingest
pytest>=3.2.0
pytest>=3.2.0
black;python_version == '3.6'