fix: ci
This commit is contained in:
parent
4b3b0f4f49
commit
9fc1042d07
2 changed files with 3 additions and 3 deletions
|
@ -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]
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue