pytest-bdd/.travis.yml

16 lines
409 B
YAML
Raw Normal View History

2013-04-03 16:29:37 +08:00
language: python
# command to install dependencies
install:
- pip install python-coveralls
2014-07-25 01:30:23 +08:00
- pip install -U virtualenv py
2013-04-03 16:29:37 +08:00
# # command to run tests
script: python setup.py test
after_success:
- pip install -r requirements-testing.txt -e .
- py.test --cov=pytest_bdd --cov-report=term-missing tests
- coveralls
2013-04-06 04:09:03 +08:00
notifications:
email:
- bubenkoff@gmail.com
2013-08-10 09:38:44 +08:00
- oleg.podsadny@gmail.com