File tree Expand file tree Collapse file tree 8 files changed +18
-13
lines changed
Expand file tree Collapse file tree 8 files changed +18
-13
lines changed Original file line number Diff line number Diff line change 44 push :
55 branches : [master, main]
66 paths :
7- - ' nisystemlink_demo /**'
7+ - ' nisystemlink_examples /**'
88 - ' tests/**'
99 - ' pyproject.toml'
1010 - ' .github/workflows/python-package.yml'
1111 pull_request :
1212 branches : [master, main]
1313 paths :
14- - ' nisystemlink_demo /**'
14+ - ' nisystemlink_examples /**'
1515 - ' tests/**'
1616 - ' pyproject.toml'
1717 - ' .github/workflows/python-package.yml'
4141 if : github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main')
4242 environment :
4343 name : pypi
44- url : https://pypi.org/p/nisystemlink-demo
44+ url : https://pypi.org/p/nisystemlink-examples
4545 permissions :
4646 id-token : write
4747 contents : write
Original file line number Diff line number Diff line change 1+ {
2+ "python.testing.pytestArgs" : [" tests" ],
3+ "python.testing.unittestEnabled" : false ,
4+ "python.testing.pytestEnabled" : true
5+ }
Original file line number Diff line number Diff line change @@ -83,12 +83,12 @@ poetry run poe format && poetry run poe lint && poetry run poe types && poetry r
8383## Commit Message Convention
8484
8585This project uses [ Conventional Commits] ( https://www.conventionalcommits.org/ )
86- for automated versioning and changelog generation of the ` nisystemlink_demo `
86+ for automated versioning and changelog generation of the ` nisystemlink_examples `
8787Python package.
8888
8989** When conventional commits matter:**
9090
91- - Commits to the ` nisystemlink_demo /` package code
91+ - Commits to the ` nisystemlink_examples /` package code
9292- Changes to ` tests/ ` , ` pyproject.toml ` , or the CI workflow
9393- When merged to the ` main ` branch
9494
@@ -167,7 +167,7 @@ git commit
167167
168168When commits following the conventional format are merged to ` main ` and affect:
169169
170- - ` nisystemlink_demo /**` (package source code)
170+ - ` nisystemlink_examples /**` (package source code)
171171- ` tests/** ` (test files)
172172- ` pyproject.toml ` (package configuration)
173173- ` .github/workflows/python-package.yml ` (CI/CD workflow)
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 11[tool .poetry ]
2- name = " nisystemlink-demo "
2+ name = " nisystemlink-examples "
33version = " 0.0.0"
44description = " NI SystemLink examples and demo utilities"
55authors = [" National Instruments" ]
@@ -11,7 +11,7 @@ readme = "README.md"
1111keywords = [" nisystemlink" , " systemlink" ]
1212license = " MIT"
1313packages = [
14- {include = " nisystemlink_demo " }
14+ {include = " nisystemlink_examples " }
1515]
1616
1717[tool .poetry .dependencies ]
@@ -45,7 +45,7 @@ match = "(main|master)"
4545
4646[tool .poe .tasks ]
4747test = " pytest tests"
48- lint = " flake8 nisystemlink_demo tests"
49- check = " black --check nisystemlink_demo tests"
50- format = " black nisystemlink_demo tests"
51- types = " mypy nisystemlink_demo tests"
48+ lint = " flake8 nisystemlink_examples tests"
49+ check = " black --check nisystemlink_examples tests"
50+ format = " black nisystemlink_examples tests"
51+ types = " mypy nisystemlink_examples tests"
Original file line number Diff line number Diff line change 11"""Unit tests for the Simulator class."""
22
3- from nisystemlink_demo .testdata .simulator import Simulator
3+ from nisystemlink_examples .testdata .simulator import Simulator
44
55
66class TestSimulator :
You can’t perform that action at this time.
0 commit comments