mirror of
https://github.com/davegallant/rfd.git
synced 2025-08-06 00:33:40 +00:00
* use minimum dependencies rather than specific hashes. * install specific version of pytest and install pylint. * python 3.7 still not working.
17 lines
264 B
YAML
17 lines
264 B
YAML
sudo: false
|
|
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
# - "3.7-dev"
|
|
before_install:
|
|
- "pip install -U pip"
|
|
- "python setup.py install"
|
|
install:
|
|
- pip install tox-travis
|
|
- pip install pytest==3.6.0
|
|
- pip install pylint
|
|
script:
|
|
- tox |