mirror of
https://github.com/sprockets/sprockets.mixins.metrics.git
synced 2024-11-23 19:29:52 +00:00
Update testing
This commit is contained in:
parent
ad19d64911
commit
e64a672050
2 changed files with 8 additions and 9 deletions
11
.travis.yml
11
.travis.yml
|
@ -2,12 +2,13 @@ language: python
|
||||||
dist: xenial
|
dist: xenial
|
||||||
python:
|
python:
|
||||||
- 3.7
|
- 3.7
|
||||||
before_install:
|
|
||||||
- pip install nose coverage codecov
|
|
||||||
- pip install -r requires/testing.txt
|
|
||||||
install:
|
install:
|
||||||
- pip install -e .
|
- pip install -r requires/development.txt
|
||||||
script: nosetests --with-coverage
|
script:
|
||||||
|
- nosetests --with-coverage
|
||||||
|
- python setup.py build_sphinx
|
||||||
|
- python setup.py check
|
||||||
|
- flake8
|
||||||
after_success:
|
after_success:
|
||||||
- codecov
|
- codecov
|
||||||
sudo: false
|
sudo: false
|
||||||
|
|
6
tox.ini
6
tox.ini
|
@ -1,10 +1,8 @@
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py37
|
envlist = py37
|
||||||
indexserver =
|
|
||||||
default = https://pypi.python.org/simple
|
|
||||||
toxworkdir = build/tox
|
toxworkdir = build/tox
|
||||||
skip_missing_interpreters = True
|
skip_missing_interpreters = True
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps = -rrequires/testing.txt
|
deps = -r requires/testing.txt
|
||||||
commands = nosetests []
|
commands = nosetests
|
||||||
|
|
Loading…
Reference in a new issue