-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
21 additions
and
25 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
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,13 +1,13 @@ | ||
pipeline: | ||
install: | ||
- step: CreateVEnv | ||
module: pypeline.steps.create_venv | ||
config: | ||
bootstrap_script: .bootstrap/bootstrap.py | ||
build: | ||
- step: RunPreCommit | ||
file: steps/build.py | ||
- step: RunPytest | ||
file: steps/build.py | ||
- step: GenerateDocs | ||
file: steps/build.py | ||
install: | ||
- step: CreateVEnv | ||
module: pypeline.steps.create_venv | ||
config: | ||
bootstrap_script: .bootstrap/bootstrap.py | ||
build: | ||
- step: RunPreCommit | ||
file: steps/build.py | ||
- step: RunPytest | ||
file: steps/build.py | ||
- step: GenerateDocs | ||
file: steps/build.py |
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,12 +1,12 @@ | ||
""" | ||
Used to run ihex from the command line when run from this repository. | ||
Used to run ihexer from the command line when run from this repository. | ||
This is required because ihex module is not visible when running from the repository. | ||
This is required because ihexer module is not visible when running from the repository. | ||
""" | ||
|
||
import runpy | ||
import sys | ||
from pathlib import Path | ||
|
||
sys.path.insert(0, Path(__file__).parent.parent.absolute().as_posix()) | ||
runpy.run_module("ihex.main", run_name="__main__") | ||
runpy.run_module("ihexer.main", run_name="__main__") |
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