This commit is contained in:
Loic Guegan 2023-06-28 16:00:49 +02:00
parent f84359ec7a
commit 9a1578ae75

View file

@ -2,8 +2,8 @@ archlinux:
image: "archlinux:latest" image: "archlinux:latest"
before_script: before_script:
- pacman -Sy python python-pip python-numpy diffutils --noconfirm --needed - pacman -Sy python python-pip python-numpy diffutils --noconfirm --needed
- pip install build - pip install build --break-system-packages
- pip install . - pip install . --break-system-packages
script: script:
- ./tests/run.sh - ./tests/run.sh
@ -11,9 +11,9 @@ debian:
image: "debian:latest" image: "debian:latest"
before_script: before_script:
- apt update && apt install -y python3 python3-pip python-is-python3 - apt update && apt install -y python3 python3-pip python-is-python3
- pip install numpy - pip install numpy --break-system-packages
- pip install build - pip install build --break-system-packages
- pip install . - pip install . --break-system-packages
script: script:
- ./tests/run.sh - ./tests/run.sh