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