Skip to content

Commit c4113fe

Browse files
authored
Migrating to pytest (#127)
* chore: moving dependencies around, adjusting CI * chore: installing through poetry * chore: bumping questo and yakh * chore: relaxing python constraint again
1 parent 91d0b3b commit c4113fe

File tree

5 files changed

+90
-1738
lines changed

5 files changed

+90
-1738
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
- name: Test with ward
4141
run: |
4242
export PYTHONPATH=$(pwd)
43+
poetry run pip install -r requirements-dev.txt
4344
poe test
4445
4546
- name: Install documentation dependencies

.github/workflows/python-test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ jobs:
5353
- name: Test with ward
5454
run: |
5555
export PYTHONPATH=$(pwd)
56+
poetry run pip install -r requirements-dev.txt
5657
poe test
5758
- name: Typecheck the code
5859
run: |
@@ -100,10 +101,11 @@ jobs:
100101
- name: Install dependencies
101102
run: |
102103
python -m pip install "poetry${{ env.POETRY_VERSION }}" poethepoet
103-
poetry install --without dev
104+
poetry install
104105
- name: Build and install the library
105106
run: |
106107
poe build
107108
- name: Test with ward
108109
run: |
110+
poetry run pip install -r requirements-dev.txt
109111
poe test

0 commit comments

Comments
 (0)