Skip to content

Commit 969680a

Browse files
committed
[scripts/release_tests] Change PyPI TEST phrasing
1 parent 01fb29a commit 969680a

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

scripts/release_tests/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,27 +18,27 @@ The tests include
1818

1919
To test the various local installations of odml, execute `run_test_matrix.sh` with option 'A'. odml will be installed into fresh conda environments using `pip install .` and `python setup.py install` and all Python versions >= 3.5.
2020

21-
### odml Test PyPI installation tests
21+
### odml PyPI TEST installation tests
2222

23-
To test the installation of the odml package from Test PyPI, execute `run_test_matrix.sh` with option 'B'. odml will be installed into fresh conda environments using `pip install odml` and all Python versions >= 3.5.
23+
To test the installation of the odml package from the PyPI TEST repository, execute `run_test_matrix.sh` with option 'B'. odml will be installed into fresh conda environments using `pip install odml` and all Python versions >= 3.5.
2424
The package `odml-ui` will be installed as well and all installable odml command line scripts will be tested after the odml installation.
2525

26-
### odmltools Test PyPI installation tests
26+
### odmltools PyPI server installation tests
2727

28-
When executing `run_test_matrix.sh` with option 'C', the odml dependent package `odmltools` will be pip installed into fresh conda environments for all Python versions >= 3.6 from the Test PyPI repository and appropriate conversion tests will be run using the installed command line tool.
28+
When executing `run_test_matrix.sh` with option 'C', the odml dependent package `odmltools` will be pip installed into fresh conda environments for all Python versions >= 3.6 from the PyPI TEST repository and appropriate conversion tests will be run using the installed command line tool.
2929

30-
### nixodmlconverter Test PyPI installation tests
30+
### nixodmlconverter PyPI TEST installation tests
3131

32-
When executing `run_test_matrix.sh` with option 'D' the odml dependent package `nixodmlconverter` will be pip installed into fresh conda environments for all Python versions >= 3.6 from the Test PyPI repository and appropriate conversion tests will be run using the installed command line tool.
32+
When executing `run_test_matrix.sh` with option 'D' the odml dependent package `nixodmlconverter` will be pip installed into fresh conda environments for all Python versions >= 3.6 from the PyPI TEST repository and appropriate conversion tests will be run using the installed command line tool.
3333

34-
### odml PyPI installation tests
34+
### odml PyPI LIVE installation tests
3535

3636
To test the installation of the odml package from PyPI proper, execute `run_test_matrix.sh` with option 'E'. odml will be installed into fresh conda environments using `pip install odml` and all Python versions >= 3.5.
3737
The package `odml-ui` will be installed as well and all installable odml command line scripts will be tested after the odml installation.
3838

3939
## Manual odml-ui tests
4040

41-
To set up conda environments and run local or Test PyPI installations run the script `run_test_matrix.sh` with option `B` from the current directory.
41+
To set up conda environments and run local or PyPI TEST installations run the script `run_test_matrix.sh` with option `B` from the current directory.
4242
Once set up, the conda environments can be used to manually test `odml-ui` as well.
4343

4444
Activate python installation environment

scripts/release_tests/run_test_matrix.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ print_options () {
77
echo
88
echo "-- Missing or invalid test script selection letter (A|B|C|D|E), please provide one of the following"
99
echo " A: local install test (odml)"
10-
echo " B: Test PyPI install test (odml)"
11-
echo " C: Test PyPI install test (odmltools)"
12-
echo " D: Test PyPI install test (nixodmlconverter)"
13-
echo " E: PyPI install test (odml)"
10+
echo " B: PyPI TEST install test (odml)"
11+
echo " C: PyPI TEST install test (odmltools)"
12+
echo " D: PyPI TEST install test (nixodmlconverter)"
13+
echo " E: PyPI LIVE install test (odml)"
1414
}
1515

1616
if [[ $# != 1 ]]; then
@@ -36,28 +36,28 @@ fi
3636

3737
if [[ "${TEST}" == "B" ]]; then
3838
echo
39-
echo "-- Running PyPI test odml installations"
39+
echo "-- Running PyPI TEST server odml installations"
4040
LOG_DIR=/tmp/odml/pypi_test_install_odml
4141
SCRIPT=./run_test_pypi_odml.sh
4242
fi
4343

4444
if [[ "${TEST}" == "C" ]]; then
4545
echo
46-
echo "-- Running PyPI test odmltools installations"
46+
echo "-- Running PyPI TEST server odmltools installations"
4747
LOG_DIR=/tmp/odml/pypi_test_install_odmltools
4848
SCRIPT=./run_test_pypi_odmltools.sh
4949
fi
5050

5151
if [[ "${TEST}" == "D" ]]; then
5252
echo
53-
echo "-- Running PyPI test nixodmlconverter installations"
53+
echo "-- Running PyPI TEST server nixodmlconverter installations"
5454
LOG_DIR=/tmp/odml/pypi_test_install_nixodmlconverter
5555
SCRIPT=./run_test_pypi_nixodmlconverter.sh
5656
fi
5757

5858
if [[ "${TEST}" == "E" ]]; then
5959
echo
60-
echo "-- Running PyPI odml installations"
60+
echo "-- Running PyPI LIVE server odml installations"
6161
LOG_DIR=/tmp/odml/pypi_install_odml
6262
SCRIPT=./run_pypi_odml.sh
6363
fi

0 commit comments

Comments
 (0)