-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introducing git trunk commands support on submodules. It is now possible to run all commands from submodules just like on main repo. This makes it easier to work with submodules directly from superproject. Meaning that user won't need to switch context/projects, separately develop dependency repository, finish it and then pull changes via superproject submodule. [FIX] git_trunk_commands: active_ref_name Using it be able to always get reference, when needed (when repo might not be on active branch, but on detached head like tag or raw commit). [REF] .travis: use unittest over nose nose package is obsolete now. [REF] git_trunk: somewhat better typing coverage [REF] git_trunk: split git_trunk.py Splitting git_trunk.py for better readability, separating concerns, reusability.
- Loading branch information
Showing
16 changed files
with
952 additions
and
668 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 |
---|---|---|
|
@@ -7,3 +7,5 @@ | |
build/ | ||
dist/ | ||
MANIFEST | ||
# mypy | ||
.mypy_cache/ |
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 |
---|---|---|
|
@@ -14,4 +14,5 @@ install: | |
- "pip install ." | ||
|
||
# command to run tests | ||
script: nosetests | ||
script: | ||
- python -m unittest discover -v |
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
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 +1 @@ | ||
__version__ = '0.3.0' | ||
__version__ = '0.4.0' |
Oops, something went wrong.