rally/.gitignore
Boris Pavlovic 4ceeb79646 Use pytest instead of testr
- pytest is used by everybody
- pytest works on MacOS and Windows without any issues
- pytest doesn't require bash scripts in and .testrconfig in repo
- pytest has built-in colorizer
- pytest shows out of box slowest test
- pytest shows progress

This patch does 3 things:
1) Remove testr config file & requirments
2) Add pytest requirments
3) Change tox.ini to use pytest instead of testr

To add parameters to py.test you should add -- and than all args.
For example,
  tox -e py27 -- -k "db"

Change-Id: Ide3ddd58a2d1635651fc53404cb5cc7c1c4bab5e
2016-06-23 15:25:06 +03:00

49 lines
426 B
Plaintext

*.py[cod]
# C extensions
*.so
# Packages
*.egg
*.egg-info
dist
build
eggs
.eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg
lib
!devstack/lib
lib64
# Installer logs
pip-log.txt
# Unit test / coverage reports
.coverage
.tox
nosetests.xml
cover
.testrepository
*.sqlite
.venv
.cache
pytest_results.html
# Docs
doc/source/_build/
# Translations
*.mo
# Mr Developer
.mr.developer.cfg
.project
.idea
.pydevproject
*.swp