-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Lukas Puehringer <lukas.puehringer@nyu.edu> Co-Authored-By: Joshua Lock <jlock@vmware.com>
- Loading branch information
Showing
5 changed files
with
48 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
# Install tox for local testing, but also everything that tox would install | ||
# in a test environment, so that we can run the test suite or individual tests | ||
# directly in the development environment as well. | ||
# Install tuf in editable mode and requirements for local testing with tox, | ||
# and also for running test suite or individual tests manually | ||
tox | ||
-r requirements-tox.txt | ||
|
||
# Install tuf in editable mode | ||
-e . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# Runtime requirements for test suite | ||
# Install test requirements (see 'tests_require' field in setup.py) | ||
mock; python_version < "3.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
# pinned tuf runtime dependencies | ||
# Install requirements needed in each tox environment | ||
|
||
# pinned tuf runtime dependencies (should auto-update and -trigger ci/cd) | ||
-r requirements-pinned.txt | ||
|
||
# tuf test suite runtime dependencies | ||
# test runtime dependencies | ||
-r requirements-test.txt | ||
|
||
# test tools for linting and test coverage measurement | ||
# additional test tools for linting and coverage measurement | ||
coverage | ||
pylint | ||
bandit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters