diff options
author | Maximilian Hils <git@maximilianhils.com> | 2014-08-30 17:40:33 +0200 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2014-08-30 17:40:33 +0200 |
commit | 2b9a604351124d5b85eba78f6d33b82194d64472 (patch) | |
tree | 321cb5b962acb9b2b92c23561f673d2514e10643 | |
parent | a87f075f32e40dba06a6ad042d9d934bef04382f (diff) | |
download | mitmproxy-2b9a604351124d5b85eba78f6d33b82194d64472.tar.gz mitmproxy-2b9a604351124d5b85eba78f6d33b82194d64472.tar.bz2 mitmproxy-2b9a604351124d5b85eba78f6d33b82194d64472.zip |
fix travis
-rw-r--r-- | .travis.yml | 5 | ||||
-rw-r--r-- | requirements.txt | 2 |
2 files changed, 3 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 2cc19030..bf33db2b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,9 +3,8 @@ python: - "2.7" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - - "pip install --upgrade git+https://github.com/mitmproxy/netlib.git" - - "pip install -r requirements.txt --use-mirrors" - - "pip install -r test/requirements.txt --use-mirrors" + - "pip install -r requirements.txt" + - "pip install -r test/requirements.txt" # command to run tests, e.g. python setup.py test script: - "nosetests --with-cov --cov-report term-missing" diff --git a/requirements.txt b/requirements.txt index cca32743..94ee067f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ --e --src .. git+https://github.com/mitmproxy/netlib.git#egg=netlib +--src .. -e git+https://github.com/mitmproxy/netlib.git#egg=netlib -e .
\ No newline at end of file |