File: README.md

package info (click to toggle)
python-asdf 2.14.3-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 2,280 kB
  • sloc: python: 16,612; makefile: 124
file content (25 lines) | stat: -rw-r--r-- 399 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Troubleshooting asdf tests on S390X architecture

1. Build the Docker image:

```
docker build -t asdf-s390x .
```

2. Run the container, which starts in the asdf repository root:

```
docker run -it asdf-s390x
```

Alternatively, bind-mount a checkout with local changes:

```
docker run -it --mount type=bind,source=/path/to/asdf,target=/root/asdf asdf-s390x
```

3. Run pytest:

```
pytest
```