Skip to content

Fix pytest-xdist entrypoint with custom caching #30

Fix pytest-xdist entrypoint with custom caching

Fix pytest-xdist entrypoint with custom caching #30

Workflow file for this run

---
name: Checking code functionality
on: [push]
jobs:
ci-test:
runs-on: ubuntu-latest
container: fedorapython/fedora-python-tox:latest
strategy:
fail-fast: false
matrix:
tox-env: ["py312-dist"]
steps:
- uses: actions/checkout@v4
- name: Install the supporting dependencies
run: |
dnf install \
libglvnd-egl \
dbus-libs \
libxkbcommon-x11 \
libxkbcommon \
xcb-util \
xcb-util-image \
xcb-util-renderutil \
xcb-util-cursor \
xcb-util-keysyms \
xcb-util-wm \
xorg-x11-server-Xvfb \
tesseract \
--assumeyes
- name: Install the base dependencies
run: |
python3 -m pip install --upgrade poetry tox
- name: Check the functionality of the code
run: |
tox -e ${{ matrix.tox-env }}