@@ -18,25 +18,30 @@ jobs:
1818 matrix :
1919 python-version :
2020 - 3.8
21- - 3.9
22- - ' 3.10'
23- - ' 3.11'
21+ # - 3.9
22+ # - '3.10'
23+ # - '3.11'
2424 steps :
2525 - uses : actions/checkout@v2
26- - name : Set up Python ${{ matrix.python-version }}
27- uses : actions/setup-python@v2
28- with :
29- python-version : ${{ matrix.python-version }}
30- - name : Install dependencies
31- run : |
32- python -m pip install --upgrade pip
33- pip install -r requirements.txt
34- pip install -r test_requirements.txt
35- - name : Pre-commit checks
36- run : pre-commit run --all-files
26+ # - name: Set up Python ${{ matrix.python-version }}
27+ # uses: actions/setup-python@v2
28+ # with:
29+ # python-version: ${{ matrix.python-version }}
30+ # - name: Install dependencies
31+ # run: |
32+ # python -m pip install --upgrade pip
33+ # pip install -r requirements.txt
34+ # pip install -r test_requirements.txt
35+ # - name: Pre-commit checks
36+ # run: pre-commit run --all-files
3737 - name : Test with pytest
3838 # Create the ssh key file once for all testing
3939 run : |
40+ image=$(docker run -d -v /sys/fs/cgroup:/sys/fs/cgroup:rw --security-opt=seccomp=unconfined --tmpfs /run rockylinux:9.0 /usr/sbin/init)
41+ echo "image: $image"
42+ docker logs $image
43+ echo "Logs done"
44+ exit 1
4045 ssh-keygen -t ecdsa -m PEM -N '' -f /tmp/buildrunner-test-id_rsa
4146 pytest -v -m "not serial" --numprocesses=auto --junitxml=test-reports/non-serial-test-results.xml
4247 pytest -v -m "serial" --junitxml=test-reports/serial-test-results.xml
0 commit comments