diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08fc826..1eae067 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: run: | set -e pip install ry --find-links dist --force-reinstall - pip install pytest + pip install -r requirements.dev.txt pytest linux: @@ -75,6 +75,7 @@ jobs: run: | set -e pip install ry --find-links dist --force-reinstall + pip install -r requirements.dev.txt pip install pytest pytest - name: pytest @@ -87,7 +88,7 @@ jobs: install: | apt-get update apt-get install -y --no-install-recommends python3 python3-pip - pip3 install -U pip pytest + pip3 install -U pip pytest pytest-asyncio pytest-benchmark run: | set -e pip3 install ry --find-links dist --force-reinstall @@ -126,7 +127,7 @@ jobs: run: | set -e pip install ry --find-links dist --force-reinstall - pip install pytest + pip install -r requirements.dev.txt pytest macos: @@ -162,6 +163,7 @@ jobs: run: | set -e pip install ry --find-links dist --force-reinstall + pip install -r requirements.dev.txt pip install pytest pytest diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index fe98171..81d98de 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -41,5 +41,6 @@ jobs: run: | set -e pip install ry --find-links dist --force-reinstall + pip install -r requirements.dev.txt pip install pytest pytest diff --git a/requirements.dev.in b/requirements.dev.in index a208153..60e2368 100644 --- a/requirements.dev.in +++ b/requirements.dev.in @@ -1,3 +1,4 @@ pytest pytest-asyncio pytest-benchmark +tomli diff --git a/requirements.dev.txt b/requirements.dev.txt index e6458a5..180f6ac 100644 --- a/requirements.dev.txt +++ b/requirements.dev.txt @@ -23,3 +23,5 @@ pytest-asyncio==0.23.3 # via -r requirements.dev.in pytest-benchmark==4.0.0 # via -r requirements.dev.in +tomli==2.0.1 + # via -r requirements.dev.in