From 89fa6fbf83c4be8e2394b456166c228c58428ea6 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 5 Mar 2023 23:28:09 +0100 Subject: Fix unit tests --- podman/arch-testenv | 4 ++-- podman/debian-testenv | 2 +- podman/fedora-testenv | 2 +- podman/ubuntu-testenv | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) (limited to 'podman') diff --git a/podman/arch-testenv b/podman/arch-testenv index 11b3087..3d75cc9 100644 --- a/podman/arch-testenv +++ b/podman/arch-testenv @@ -3,8 +3,8 @@ FROM docker.io/archlinux:latest MAINTAINER gerbolyze@jaseg.de RUN pacman --noconfirm -Syu RUN pacman --noconfirm -Sy pugixml opencv pango cairo git python make clang rustup cargo python-pip base-devel gerbv rsync -RUN python3 -m pip install pytest-parallel +RUN python3 -m pip install pytest-parallel setuptools wasmtime RUN rustup install stable RUN rustup default stable -RUN cargo install usvg resvg +RUN cargo install resvg RUN python3 -m pip install --upgrade gerbonara diff --git a/podman/debian-testenv b/podman/debian-testenv index 544b3f2..f01b887 100644 --- a/podman/debian-testenv +++ b/podman/debian-testenv @@ -7,5 +7,5 @@ RUN env DEBIAN_FRONTEND=noninteractive apt install -y libopencv-dev libpugixml-d RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y RUN sh -c '. ~/.cargo/env && rustup install stable' RUN sh -c '. ~/.cargo/env && rustup default stable' -RUN sh -c '. ~/.cargo/env && cargo install usvg' +RUN sh -c '. ~/.cargo/env && cargo install resvg' diff --git a/podman/fedora-testenv b/podman/fedora-testenv index c37de87..1ecec06 100644 --- a/podman/fedora-testenv +++ b/podman/fedora-testenv @@ -3,5 +3,5 @@ FROM docker.io/fedora:latest MAINTAINER gerbolyze@jaseg.de RUN dnf update --refresh -y RUN dnf install -y python3 make clang opencv-devel pugixml-devel pango-devel cairo-devel rust cargo -RUN cargo install usvg +RUN cargo install resvg diff --git a/podman/ubuntu-testenv b/podman/ubuntu-testenv index 6f38dbb..2e9dc57 100644 --- a/podman/ubuntu-testenv +++ b/podman/ubuntu-testenv @@ -3,6 +3,6 @@ FROM docker.io/ubuntu:latest MAINTAINER gerbolyze@jaseg.de RUN env DEBIAN_FRONTEND=noninteractive apt update -y RUN env DEBIAN_FRONTEND=noninteractive apt install -y libopencv-dev libpugixml-dev libpangocairo-1.0-0 libpango1.0-dev libcairo2-dev clang make python3 git python3-wheel curl python3-pip python3-venv cargo rsync gerbv -RUN cargo install usvg resvg -RUN python3 -m pip install numpy slugify lxml click pillow scipy sphinx pytest beautifulsoup4 pytest-parallel +RUN cargo install resvg +RUN python3 -m pip install numpy slugify lxml click pillow scipy sphinx pytest beautifulsoup4 pytest-parallel wasmtime RUN python3 -m pip install --upgrade gerbonara -- cgit