-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added library version validator * Added instruction for upgrade library * Added INSIDE_DOCKER parameter from ENV (#42) * Update setup.py * remove lib validator
- Loading branch information
1 parent
06f9b7d
commit e659255
Showing
3 changed files
with
6 additions
and
5 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 |
---|---|---|
@@ -1,7 +1,8 @@ | ||
import os | ||
import sys | ||
|
||
skip_slow: bool = '--skip_slow' in sys.argv | ||
ignore_stdout: bool = '--ignore_stdout' in sys.argv | ||
inside_docker: bool = '--inside_docker' in sys.argv | ||
inside_docker: bool = '--inside_docker' in sys.argv or os.environ.get('INSIDE_DOCKER', '') == '1' | ||
debug_mode: bool = '--debug_mode' in sys.argv or sys.gettrace() is not None | ||
force_process_testing: bool = '--force_process_testing' in sys.argv |
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