Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 298
Fix TUTORIAL.md and add regression testing for future issues#775
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
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
2d2c527e2ec3ef56f14c4b947a6b608e377e24525c3a371898e22de56c850e0bfcdfd514500a8b86b4aaeed90035616fd2654e8dc45c4f4cbd813d8ca8e9ccbb6a32a512c62de7d3dd4647f712dc7bb96de9851fe6ddac993758855a8dbd4fc23496031bd1b7e8b7e5da26e9acb8a4c4fc74cf2File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -25,9 +25,10 @@ init: | ||
| install: | ||
| - set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH% | ||
| - python -m pip install -U pip | ||
| - python -m pip install -U pip setuptools | ||
| - pip install -e . | ||
| - pip install securesystemslib[crypto,pynacl] | ||
| - if %PYTHON_VERSION%==2.7 pip install mock | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This does the trick, nice work @lukpueh. | ||
| build: false | ||
Large diffs are not rendered by default.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we need to explicitly install mock for Python 2.7 on appveyor?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
True. Let me fix this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@joshuagl, do you happen to know how to install the dependency only for Python 2.7 builds on appveyor?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not off the top of my head, but I think we should be able to use
for.matrix.only/.except:https://www.appveyor.com/docs/build-configuration/#specializing-matrix-job-configuration
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Maybe 932c025 works too.