|
6 | 6 | $ ./run.sh |
7 | 7 |
|
8 | 8 | usage: run.sh [-t test ...] image:tag [...] |
9 | | - ie: run.sh debian:bookworm |
| 9 | + ie: run.sh debian:trixie |
10 | 10 | run.sh -t utc python:3 |
11 | 11 | run.sh -t utc python:3 -t python-imports |
12 | 12 |
|
13 | 13 | This script processes the specified Docker images to test their running |
14 | 14 | environments. |
15 | 15 | ``` |
16 | 16 |
|
17 | | -Run all the tests that are applicable to the `debian:bookworm` image: |
| 17 | +Run all the tests that are applicable to the `debian:trixie` image: |
18 | 18 |
|
19 | 19 | ```console |
20 | | -$ ./run.sh debian:bookworm |
21 | | -testing debian:bookworm |
| 20 | +$ ./run.sh debian:trixie |
| 21 | +testing debian:trixie |
22 | 22 | 'utc' [1/4]...passed |
23 | 23 | 'no-hard-coded-passwords' [2/4]...passed |
24 | 24 | 'override-cmd' [3/4]...passed |
25 | 25 | 'debian-apt-get' [4/4]...passed |
26 | 26 | ``` |
27 | 27 |
|
28 | | -Try to run just the `python-imports` test against the `debian:bookworm` image: (which doesn't contain Python) |
| 28 | +Try to run just the `python-imports` test against the `debian:trixie` image: (which doesn't contain Python) |
29 | 29 |
|
30 | 30 | ```console |
31 | | -$ ./run.sh -t python-imports debian:bookworm |
32 | | -testing debian:bookworm |
| 31 | +$ ./run.sh -t python-imports debian:trixie |
| 32 | +testing debian:trixie |
33 | 33 | image has no tests...skipping |
34 | 34 | ``` |
35 | 35 |
|
36 | | -Run the `utc` and `python-imports` tests against `python:3`, `pypy:3`, and `debian:bookworm`: |
| 36 | +Run the `utc` and `python-imports` tests against `python:3`, `pypy:3`, and `debian:trixie`: |
37 | 37 |
|
38 | 38 | ```console |
39 | | -$ ./run.sh -t utc -t python-imports python:3 pypy:3 debian:bookworm |
| 39 | +$ ./run.sh -t utc -t python-imports python:3 pypy:3 debian:trixie |
40 | 40 | testing python:3 |
41 | 41 | 'utc' [1/2]...passed |
42 | 42 | 'python-imports' [2/2]...passed |
43 | 43 | testing pypy:3 |
44 | 44 | 'utc' [1/2]...passed |
45 | 45 | 'python-imports' [2/2]...passed |
46 | | -testing debian:bookworm |
| 46 | +testing debian:trixie |
47 | 47 | 'utc' [1/1]...passed |
48 | 48 | ``` |
49 | 49 |
|
|
0 commit comments