|
@@ -6,7 +6,7 @@
|
|
$ ./run.sh
|
|
$ ./run.sh
|
|
|
|
|
|
usage: run.sh [-t test ...] image:tag [...]
|
|
usage: run.sh [-t test ...] image:tag [...]
|
|
- ie: run.sh debian:buster
|
|
|
|
|
|
+ ie: run.sh debian:bookworm
|
|
run.sh -t utc python:3
|
|
run.sh -t utc python:3
|
|
run.sh -t utc python:3 -t python-hy
|
|
run.sh -t utc python:3 -t python-hy
|
|
|
|
|
|
@@ -14,36 +14,36 @@ This script processes the specified Docker images to test their running
|
|
environments.
|
|
environments.
|
|
```
|
|
```
|
|
|
|
|
|
-Run all the tests that are applicable to the `debian:buster` image:
|
|
|
|
|
|
+Run all the tests that are applicable to the `debian:bookworm` image:
|
|
|
|
|
|
```console
|
|
```console
|
|
-$ ./run.sh debian:buster
|
|
|
|
-testing debian:buster
|
|
|
|
|
|
+$ ./run.sh debian:bookworm
|
|
|
|
+testing debian:bookworm
|
|
'utc' [1/4]...passed
|
|
'utc' [1/4]...passed
|
|
'no-hard-coded-passwords' [2/4]...passed
|
|
'no-hard-coded-passwords' [2/4]...passed
|
|
'override-cmd' [3/4]...passed
|
|
'override-cmd' [3/4]...passed
|
|
'debian-apt-get' [4/4]...passed
|
|
'debian-apt-get' [4/4]...passed
|
|
```
|
|
```
|
|
|
|
|
|
-Try to run just the `python-hy` test against the `debian:buster` image: (which doesn't contain Python)
|
|
|
|
|
|
+Try to run just the `python-hy` test against the `debian:bookworm` image: (which doesn't contain Python)
|
|
|
|
|
|
```console
|
|
```console
|
|
-$ ./run.sh -t python-hy debian:buster
|
|
|
|
-testing debian:buster
|
|
|
|
|
|
+$ ./run.sh -t python-hy debian:bookworm
|
|
|
|
+testing debian:bookworm
|
|
image has no tests...skipping
|
|
image has no tests...skipping
|
|
```
|
|
```
|
|
|
|
|
|
-Run the `utc` and `python-hy` tests against `python:3`, `pypy:3`, and `debian:buster`:
|
|
|
|
|
|
+Run the `utc` and `python-hy` tests against `python:3`, `pypy:3`, and `debian:bookworm`:
|
|
|
|
|
|
```console
|
|
```console
|
|
-$ ./run.sh -t utc -t python-hy python:3 pypy:3 debian:buster
|
|
|
|
|
|
+$ ./run.sh -t utc -t python-hy python:3 pypy:3 debian:bookworm
|
|
testing python:3
|
|
testing python:3
|
|
'utc' [1/2]...passed
|
|
'utc' [1/2]...passed
|
|
'python-hy' [2/2]...passed
|
|
'python-hy' [2/2]...passed
|
|
testing pypy:3
|
|
testing pypy:3
|
|
'utc' [1/2]...passed
|
|
'utc' [1/2]...passed
|
|
'python-hy' [2/2]...passed
|
|
'python-hy' [2/2]...passed
|
|
-testing debian:buster
|
|
|
|
|
|
+testing debian:bookworm
|
|
'utc' [1/1]...passed
|
|
'utc' [1/1]...passed
|
|
```
|
|
```
|
|
|
|
|