-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix default setup.py due to pip10 incompatible changes #3
Conversation
@barbosm Can you try making this change also and see if it fixes the unit test failure: $ git diff
diff --git a/.travis.yml b/.travis.yml
index f23fbda..5d71d3f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,8 +3,8 @@ python:
- 2.7
install:
- pip install -r requirements-dev.txt
+- pip install -r requirements.txt
- pip install .
-- pip install -e git+https://github.com/napalm-automation/napalm-base.git@develop#egg=napalm-base
- pip install coveralls
deploy: |
@ktbyers Hi Kirk, I'm not completely sure about how to run the test manually so I looked at the details of the failed build and just followed the exact same steps.
Is this ok ? BTW, tks for your python course, I've learned a great deal from it and that's why I'm now trying to create a new napalm driver :) |
Yes, the unit tests run fine...the issue is that Travis tries to install a dependency that is now deprecated. |
Closed duplicate with: |
Fix #2