We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 253b245 + a3f70a9 commit e04c5cbCopy full SHA for e04c5cb
4 files changed
.travis.yml
script/test
@@ -1,4 +1,5 @@
1
#!/bin/sh
2
-set -e
3
-flake8 fig
4
-PYTHONIOENCODING=ascii nosetests $@
+set -ex
+docker build -t fig .
+docker run -v /var/run/docker.sock:/var/run/docker.sock fig flake8 fig
5
+docker run -v /var/run/docker.sock:/var/run/docker.sock fig nosetests $@
script/travis-integration
wercker.yml
@@ -4,12 +4,6 @@ build:
- script:
name: validate DCO
6
code: script/validate-dco
7
- - script:
8
- name: build
9
- code: docker build -t fig .
10
11
- name: flake8
12
- code: docker run -v /var/run/docker.sock:/var/run/docker.sock fig flake8 fig
13
14
name: run tests
15
- code: docker run -v /var/run/docker.sock:/var/run/docker.sock fig nosetests
+ code: script/test
0 commit comments