Skip to content

Commit e13bb31

Browse files
committed
fix tests
1 parent 95f0c31 commit e13bb31

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/phase1-ci-and-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ jobs:
2626
python-version: "3.11"
2727

2828
- name: Install dependencies
29-
run: python -m pip install --upgrade pip pre-commit pytest
29+
run: |
30+
python -m pip install --upgrade pip pre-commit pytest
31+
python -m pip install -e predicate_contracts -e predicate_authority
3032
3133
- name: Verify package release order
3234
run: python scripts/verify_release_order.py

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ jobs:
2424
python-version: ${{ matrix.python-version }}
2525

2626
- name: Install test dependencies
27-
run: python -m pip install --upgrade pip pytest
27+
run: |
28+
python -m pip install --upgrade pip pytest
29+
python -m pip install -e predicate_contracts -e predicate_authority
2830
2931
- name: Run tests
3032
run: python -m pytest -q

predicate_authority/pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ classifiers = [
1717
]
1818
dependencies = [
1919
"predicate-contracts>=0.1.0,<0.2.0",
20+
"pyyaml>=6.0",
2021
]
2122

2223
[project.scripts]

0 commit comments

Comments
 (0)