Skip to content

Commit 72fce1e

Browse files
authored
Do not overwrite example testing results (#2048)
* Eliminate unused kibana json * Do not overwrite example tests junitxml
1 parent 1ad43ab commit 72fce1e

File tree

13 files changed

+22
-24
lines changed

13 files changed

+22
-24
lines changed

.github/actions/linux/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ runs:
1313
source /etc/bashrc
1414
cd generated
1515
mkdir junit
16-
mkdir kibana
1716
cd ${{ inputs.module_name }}
1817
python -m tox -c tox-system_tests.ini
1918
shell: bash

.github/actions/windows/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ runs:
1212
- run: |
1313
cd generated
1414
mkdir junit
15-
mkdir kibana
1615
cd ${{ inputs.module_name }}
1716
python -m tox -c tox-system_tests.ini
1817
shell: powershell

build/templates/tox-system_tests.ini.mako

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ commands =
5858
${module_name}-system_tests: python ../../tools/install_local_wheel.py --driver ${other_wheel} --start-path ../..
5959
% endif
6060
${module_name}-system_tests: python -c "import ${module_name}; ${module_name}.print_diagnostic_information()"
61-
${module_name}-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source ${module_name} --parallel-mode -m pytest ../../src/${module_name}/examples --junitxml=../junit/junit-${module_name}-{envname}-{env:BITNESS:64}.xml --json=../kibana/${module_name}_system_test_result.json {posargs}
62-
${module_name}-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source ${module_name} --parallel-mode -m pytest ../../src/${module_name}/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-${module_name}-{envname}-{env:BITNESS:64}.xml --json=../kibana/${module_name}_system_test_result.json --durations=5 {posargs}
61+
${module_name}-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source ${module_name} --parallel-mode -m pytest ../../src/${module_name}/examples --junitxml=../junit/junit-${module_name}-{envname}-examples-{env:BITNESS:64}.xml {posargs}
62+
${module_name}-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source ${module_name} --parallel-mode -m pytest ../../src/${module_name}/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-${module_name}-{envname}-{env:BITNESS:64}.xml --durations=5 {posargs}
6363

6464
${module_name}-coverage: coverage combine --rcfile=../../tools/coverage_system_tests.rc ./
6565
# Create the report to upload

generated/nidcpower/tox-system_tests.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ commands =
2222
# --disable-pip-version-check prevents pip from telling us we need to upgrade pip, since we are doing that now
2323
nidcpower-system_tests: python -m pip install --disable-pip-version-check --upgrade pip
2424
nidcpower-system_tests: python -c "import nidcpower; nidcpower.print_diagnostic_information()"
25-
nidcpower-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nidcpower --parallel-mode -m pytest ../../src/nidcpower/examples --junitxml=../junit/junit-nidcpower-{envname}-{env:BITNESS:64}.xml --json=../kibana/nidcpower_system_test_result.json {posargs}
26-
nidcpower-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nidcpower --parallel-mode -m pytest ../../src/nidcpower/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nidcpower-{envname}-{env:BITNESS:64}.xml --json=../kibana/nidcpower_system_test_result.json --durations=5 {posargs}
25+
nidcpower-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nidcpower --parallel-mode -m pytest ../../src/nidcpower/examples --junitxml=../junit/junit-nidcpower-{envname}-examples-{env:BITNESS:64}.xml {posargs}
26+
nidcpower-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nidcpower --parallel-mode -m pytest ../../src/nidcpower/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nidcpower-{envname}-{env:BITNESS:64}.xml --durations=5 {posargs}
2727

2828
nidcpower-coverage: coverage combine --rcfile=../../tools/coverage_system_tests.rc ./
2929
# Create the report to upload

generated/nidigital/tox-system_tests.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ commands =
2727
nidigital-system_tests: python -m pip install --disable-pip-version-check --upgrade pip
2828
nidigital-system_tests: python ../../tools/install_local_wheel.py --driver nitclk --start-path ../..
2929
nidigital-system_tests: python -c "import nidigital; nidigital.print_diagnostic_information()"
30-
nidigital-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nidigital --parallel-mode -m pytest ../../src/nidigital/examples --junitxml=../junit/junit-nidigital-{envname}-{env:BITNESS:64}.xml --json=../kibana/nidigital_system_test_result.json {posargs}
31-
nidigital-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nidigital --parallel-mode -m pytest ../../src/nidigital/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nidigital-{envname}-{env:BITNESS:64}.xml --json=../kibana/nidigital_system_test_result.json --durations=5 {posargs}
30+
nidigital-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nidigital --parallel-mode -m pytest ../../src/nidigital/examples --junitxml=../junit/junit-nidigital-{envname}-examples-{env:BITNESS:64}.xml {posargs}
31+
nidigital-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nidigital --parallel-mode -m pytest ../../src/nidigital/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nidigital-{envname}-{env:BITNESS:64}.xml --durations=5 {posargs}
3232

3333
nidigital-coverage: coverage combine --rcfile=../../tools/coverage_system_tests.rc ./
3434
# Create the report to upload

generated/nidmm/tox-system_tests.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ commands =
2222
# --disable-pip-version-check prevents pip from telling us we need to upgrade pip, since we are doing that now
2323
nidmm-system_tests: python -m pip install --disable-pip-version-check --upgrade pip
2424
nidmm-system_tests: python -c "import nidmm; nidmm.print_diagnostic_information()"
25-
nidmm-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nidmm --parallel-mode -m pytest ../../src/nidmm/examples --junitxml=../junit/junit-nidmm-{envname}-{env:BITNESS:64}.xml --json=../kibana/nidmm_system_test_result.json {posargs}
26-
nidmm-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nidmm --parallel-mode -m pytest ../../src/nidmm/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nidmm-{envname}-{env:BITNESS:64}.xml --json=../kibana/nidmm_system_test_result.json --durations=5 {posargs}
25+
nidmm-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nidmm --parallel-mode -m pytest ../../src/nidmm/examples --junitxml=../junit/junit-nidmm-{envname}-examples-{env:BITNESS:64}.xml {posargs}
26+
nidmm-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nidmm --parallel-mode -m pytest ../../src/nidmm/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nidmm-{envname}-{env:BITNESS:64}.xml --durations=5 {posargs}
2727

2828
nidmm-coverage: coverage combine --rcfile=../../tools/coverage_system_tests.rc ./
2929
# Create the report to upload

generated/nifake/tox-system_tests.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ commands =
2727
nifake-system_tests: python -m pip install --disable-pip-version-check --upgrade pip
2828
nifake-system_tests: python ../../tools/install_local_wheel.py --driver nitclk --start-path ../..
2929
nifake-system_tests: python -c "import nifake; nifake.print_diagnostic_information()"
30-
nifake-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nifake --parallel-mode -m pytest ../../src/nifake/examples --junitxml=../junit/junit-nifake-{envname}-{env:BITNESS:64}.xml --json=../kibana/nifake_system_test_result.json {posargs}
31-
nifake-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nifake --parallel-mode -m pytest ../../src/nifake/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nifake-{envname}-{env:BITNESS:64}.xml --json=../kibana/nifake_system_test_result.json --durations=5 {posargs}
30+
nifake-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nifake --parallel-mode -m pytest ../../src/nifake/examples --junitxml=../junit/junit-nifake-{envname}-examples-{env:BITNESS:64}.xml {posargs}
31+
nifake-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nifake --parallel-mode -m pytest ../../src/nifake/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nifake-{envname}-{env:BITNESS:64}.xml --durations=5 {posargs}
3232

3333
nifake-coverage: coverage combine --rcfile=../../tools/coverage_system_tests.rc ./
3434
# Create the report to upload

generated/nifgen/tox-system_tests.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ commands =
2727
nifgen-system_tests: python -m pip install --disable-pip-version-check --upgrade pip
2828
nifgen-system_tests: python ../../tools/install_local_wheel.py --driver nitclk --start-path ../..
2929
nifgen-system_tests: python -c "import nifgen; nifgen.print_diagnostic_information()"
30-
nifgen-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nifgen --parallel-mode -m pytest ../../src/nifgen/examples --junitxml=../junit/junit-nifgen-{envname}-{env:BITNESS:64}.xml --json=../kibana/nifgen_system_test_result.json {posargs}
31-
nifgen-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nifgen --parallel-mode -m pytest ../../src/nifgen/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nifgen-{envname}-{env:BITNESS:64}.xml --json=../kibana/nifgen_system_test_result.json --durations=5 {posargs}
30+
nifgen-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nifgen --parallel-mode -m pytest ../../src/nifgen/examples --junitxml=../junit/junit-nifgen-{envname}-examples-{env:BITNESS:64}.xml {posargs}
31+
nifgen-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nifgen --parallel-mode -m pytest ../../src/nifgen/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nifgen-{envname}-{env:BITNESS:64}.xml --durations=5 {posargs}
3232

3333
nifgen-coverage: coverage combine --rcfile=../../tools/coverage_system_tests.rc ./
3434
# Create the report to upload

generated/nimodinst/tox-system_tests.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ commands =
2222
# --disable-pip-version-check prevents pip from telling us we need to upgrade pip, since we are doing that now
2323
nimodinst-system_tests: python -m pip install --disable-pip-version-check --upgrade pip
2424
nimodinst-system_tests: python -c "import nimodinst; nimodinst.print_diagnostic_information()"
25-
nimodinst-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nimodinst --parallel-mode -m pytest ../../src/nimodinst/examples --junitxml=../junit/junit-nimodinst-{envname}-{env:BITNESS:64}.xml --json=../kibana/nimodinst_system_test_result.json {posargs}
26-
nimodinst-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nimodinst --parallel-mode -m pytest ../../src/nimodinst/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nimodinst-{envname}-{env:BITNESS:64}.xml --json=../kibana/nimodinst_system_test_result.json --durations=5 {posargs}
25+
nimodinst-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nimodinst --parallel-mode -m pytest ../../src/nimodinst/examples --junitxml=../junit/junit-nimodinst-{envname}-examples-{env:BITNESS:64}.xml {posargs}
26+
nimodinst-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nimodinst --parallel-mode -m pytest ../../src/nimodinst/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nimodinst-{envname}-{env:BITNESS:64}.xml --durations=5 {posargs}
2727

2828
nimodinst-coverage: coverage combine --rcfile=../../tools/coverage_system_tests.rc ./
2929
# Create the report to upload

generated/niscope/tox-system_tests.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ commands =
2727
niscope-system_tests: python -m pip install --disable-pip-version-check --upgrade pip
2828
niscope-system_tests: python ../../tools/install_local_wheel.py --driver nitclk --start-path ../..
2929
niscope-system_tests: python -c "import niscope; niscope.print_diagnostic_information()"
30-
niscope-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source niscope --parallel-mode -m pytest ../../src/niscope/examples --junitxml=../junit/junit-niscope-{envname}-{env:BITNESS:64}.xml --json=../kibana/niscope_system_test_result.json {posargs}
31-
niscope-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source niscope --parallel-mode -m pytest ../../src/niscope/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-niscope-{envname}-{env:BITNESS:64}.xml --json=../kibana/niscope_system_test_result.json --durations=5 {posargs}
30+
niscope-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source niscope --parallel-mode -m pytest ../../src/niscope/examples --junitxml=../junit/junit-niscope-{envname}-examples-{env:BITNESS:64}.xml {posargs}
31+
niscope-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source niscope --parallel-mode -m pytest ../../src/niscope/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-niscope-{envname}-{env:BITNESS:64}.xml --durations=5 {posargs}
3232

3333
niscope-coverage: coverage combine --rcfile=../../tools/coverage_system_tests.rc ./
3434
# Create the report to upload

generated/nise/tox-system_tests.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ commands =
2222
# --disable-pip-version-check prevents pip from telling us we need to upgrade pip, since we are doing that now
2323
nise-system_tests: python -m pip install --disable-pip-version-check --upgrade pip
2424
nise-system_tests: python -c "import nise; nise.print_diagnostic_information()"
25-
nise-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nise --parallel-mode -m pytest ../../src/nise/examples --junitxml=../junit/junit-nise-{envname}-{env:BITNESS:64}.xml --json=../kibana/nise_system_test_result.json {posargs}
26-
nise-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nise --parallel-mode -m pytest ../../src/nise/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nise-{envname}-{env:BITNESS:64}.xml --json=../kibana/nise_system_test_result.json --durations=5 {posargs}
25+
nise-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nise --parallel-mode -m pytest ../../src/nise/examples --junitxml=../junit/junit-nise-{envname}-examples-{env:BITNESS:64}.xml {posargs}
26+
nise-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nise --parallel-mode -m pytest ../../src/nise/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nise-{envname}-{env:BITNESS:64}.xml --durations=5 {posargs}
2727

2828
nise-coverage: coverage combine --rcfile=../../tools/coverage_system_tests.rc ./
2929
# Create the report to upload

generated/niswitch/tox-system_tests.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ commands =
2222
# --disable-pip-version-check prevents pip from telling us we need to upgrade pip, since we are doing that now
2323
niswitch-system_tests: python -m pip install --disable-pip-version-check --upgrade pip
2424
niswitch-system_tests: python -c "import niswitch; niswitch.print_diagnostic_information()"
25-
niswitch-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source niswitch --parallel-mode -m pytest ../../src/niswitch/examples --junitxml=../junit/junit-niswitch-{envname}-{env:BITNESS:64}.xml --json=../kibana/niswitch_system_test_result.json {posargs}
26-
niswitch-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source niswitch --parallel-mode -m pytest ../../src/niswitch/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-niswitch-{envname}-{env:BITNESS:64}.xml --json=../kibana/niswitch_system_test_result.json --durations=5 {posargs}
25+
niswitch-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source niswitch --parallel-mode -m pytest ../../src/niswitch/examples --junitxml=../junit/junit-niswitch-{envname}-examples-{env:BITNESS:64}.xml {posargs}
26+
niswitch-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source niswitch --parallel-mode -m pytest ../../src/niswitch/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-niswitch-{envname}-{env:BITNESS:64}.xml --durations=5 {posargs}
2727

2828
niswitch-coverage: coverage combine --rcfile=../../tools/coverage_system_tests.rc ./
2929
# Create the report to upload

generated/nitclk/tox-system_tests.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ commands =
2727
nitclk-system_tests: python -m pip install --disable-pip-version-check --upgrade pip
2828
nitclk-system_tests: python ../../tools/install_local_wheel.py --driver niscope --start-path ../..
2929
nitclk-system_tests: python -c "import nitclk; nitclk.print_diagnostic_information()"
30-
nitclk-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nitclk --parallel-mode -m pytest ../../src/nitclk/examples --junitxml=../junit/junit-nitclk-{envname}-{env:BITNESS:64}.xml --json=../kibana/nitclk_system_test_result.json {posargs}
31-
nitclk-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nitclk --parallel-mode -m pytest ../../src/nitclk/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nitclk-{envname}-{env:BITNESS:64}.xml --json=../kibana/nitclk_system_test_result.json --durations=5 {posargs}
30+
nitclk-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nitclk --parallel-mode -m pytest ../../src/nitclk/examples --junitxml=../junit/junit-nitclk-{envname}-examples-{env:BITNESS:64}.xml {posargs}
31+
nitclk-system_tests: coverage run --rcfile=../../tools/coverage_system_tests.rc --source nitclk --parallel-mode -m pytest ../../src/nitclk/system_tests -c tox-system_tests.ini --junitxml=../junit/junit-nitclk-{envname}-{env:BITNESS:64}.xml --durations=5 {posargs}
3232

3333
nitclk-coverage: coverage combine --rcfile=../../tools/coverage_system_tests.rc ./
3434
# Create the report to upload

0 commit comments

Comments
 (0)