We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed75341 commit 7f9b670Copy full SHA for 7f9b670
1 file changed
.travis.yml
@@ -46,8 +46,14 @@ before_install:
46
- source activate TEST
47
48
# Test source distribution.
49
-+install:
+install:
50
- python setup.py sdist && version=$(python setup.py --version) && pushd dist && pip install odm2api-${version}.tar.gz && popd
51
52
script:
53
- - py.test
+ - if [[ $TEST_TARGET == 'default' ]]; then
54
+ py.test -vv ;
55
+ fi
56
+
57
+ - if [[ $TEST_TARGET == 'coding_standards' ]]; then
58
+ find . -type f -name "*.py" ! -name 'conf.py' | xargs flake8 --max-line-length=100 ;
59
0 commit comments