-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nsxt: Typing fixes for Python 3.6 compatibility.
Ability to run checked mainly by running `docker build --tag=capirca .` and `docker run capirca`, since the current `Dockerfile` conveniently uses Python 3.6. To run the tests, a separate `Dockerfile.tests` was used (but not submitted) with the following changes: WORKDIR /app ENTRYPOINT ["python3", "-m", "unittest", "discover", "-s", ".", "-p", "nsxt_test.py", "-v"] and running the test as follows: docker build -f Dockerfile.tests --tag capirca:test_nsxt . docker run capirca:test_nsxt Fixes #345.
- Loading branch information
Showing
3 changed files
with
39 additions
and
36 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
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 |
---|---|---|
|
@@ -6,3 +6,4 @@ absl-py | |
ply | ||
PyYAML | ||
six>=1.12.0 | ||
typing_extensions |
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