Document Tox as a requirement for running tests (#6338)

This commit is contained in:
Shubhank Saxena 2020-04-22 20:45:44 +05:30 коммит произвёл GitHub
Родитель dd4d42c5fd
Коммит 1892968e10
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 5 добавлений и 1 удалений

3
.gitignore поставляемый
Просмотреть файл

@ -29,3 +29,6 @@ celerybeat-schedule
coverage
coverage.xml
.coverage
# Ignore tox installation
.tox

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

@ -60,7 +60,8 @@ The tests will perform an initial run and then re-execute each time a project fi
To run all Python tests, including linting, sorting, etc:
```shell
docker-compose run backend sh -c "./runchecks.sh && pytest tests/"
% pip install tox
% tox
```
NOTE: For instructions on how to run tests outside of Docker look at [tests/README.md](https://github.com/mozilla/treeherder/blob/master/tests/README.md).