fix: ci
All checks were successful
/ test (push) Successful in 1m13s
/ codestyle (push) Successful in 43s

This commit is contained in:
s3lph 2023-12-17 20:41:51 +01:00
parent 4b3b0f4f49
commit 9fc1042d07
Signed by: s3lph
GPG key ID: 0AA29A52FB33CFB5
2 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@ jobs:
- name: build_debian
run: |
apt update; apt install -y python3-pip
pip3 install -e .[test]
pip3 install --break-system-packages -e .[test]
python3 setup.py egg_info bdist_wheel
cat > ~/.pypirc <<EOF
[distutils]

View file

@ -11,7 +11,7 @@ jobs:
- name: test
run: |
apt update; apt install --yes python3-pip
pip3 install -e .[test]
pip3 install --break-system-packages -e .[test]
python3 -m coverage run --rcfile=setup.cfg -m unittest discover tlsrpt_exporter
python3 -m coverage combine
python3 -m coverage report --rcfile=setup.cfg
@ -23,5 +23,5 @@ jobs:
- name: codestyle
run: |
apt update; apt install --yes python3-pip
pip3 install -e .[test]
pip3 install --break-system-packages -e .[test]
pycodestyle tlsrpt_exporter