Don't have Travis run pre-commit on Python 2.6
(pre-commit no longer supports 2.6)stix2.1
parent
58a592d425
commit
ff938fd968
|
@ -12,4 +12,4 @@ install:
|
||||||
- pip install tox-travis pre-commit
|
- pip install tox-travis pre-commit
|
||||||
script:
|
script:
|
||||||
- tox
|
- tox
|
||||||
- pre-commit run --all-files
|
- if [[ $TRAVIS_PYTHON_VERSION != 2.6 ]]; then pre-commit run --all-files; fi
|
||||||
|
|
|
@ -4,6 +4,5 @@ pytest
|
||||||
pytest-cov
|
pytest-cov
|
||||||
sphinx
|
sphinx
|
||||||
tox
|
tox
|
||||||
pre-commit
|
|
||||||
|
|
||||||
-e .
|
-e .
|
||||||
|
|
Loading…
Reference in New Issue