diff options
author | Maximilian Hils <git@maximilianhils.com> | 2013-12-13 06:15:32 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2013-12-13 06:15:32 +0100 |
commit | 22aae5fb6654e685e5a1f42ad0f0ea5864f0e2c8 (patch) | |
tree | 0d7af488e497733b463b180e30069831fef2db35 | |
parent | d66fd5ba1b11ad57b7825b7feb67392f45e88c24 (diff) | |
download | mitmproxy-22aae5fb6654e685e5a1f42ad0f0ea5864f0e2c8.tar.gz mitmproxy-22aae5fb6654e685e5a1f42ad0f0ea5864f0e2c8.tar.bz2 mitmproxy-22aae5fb6654e685e5a1f42ad0f0ea5864f0e2c8.zip |
add travis CI file
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..7e4209c0 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python +python: + - "2.7" +# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors +install: + - "pip install coveralls --use-mirrors" + - "pip install nose-cov --use-mirrors" + - "pip install -r requirements.txt --use-mirrors" + - "pip install --upgrade git+https://github.com/mitmproxy/pathod.git" +# command to run tests, e.g. python setup.py test +script: + - "nosetests --with-cov --cov-report term-missing" +after_success: + - coveralls
\ No newline at end of file |