Skip to content

Commit

Permalink
Testing the python did resolver needs the js one to compare against
Browse files Browse the repository at this point in the history
  • Loading branch information
IanCal authored and lukemelia committed Mar 20, 2024
1 parent 8ce35f9 commit cb4be13
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/pr-python-did-resolver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ name: CI [python-did-resolver]
on:
pull_request:
paths:
- "packages/python-did-resolver/**"
- "packages/did-resolver/**"
- "packages/test-support/**"
- "packages/eslint-config/**"
- ".github/workflows/pr-python-did-resolver.yml"
- "package.json"
- "yarn.lock"
- 'packages/python-did-resolver/**'
- 'packages/did-resolver/**'
- 'packages/test-support/**'
- 'packages/eslint-config/**'
- '.github/workflows/pr-python-did-resolver.yml'
- 'package.json'
- 'yarn.lock'

jobs:
test:
Expand All @@ -20,7 +20,7 @@ jobs:
working-directory: ./packages/python-did-resolver
strategy:
matrix:
python-version: ["3.10"]
python-version: ['3.10']

steps:
- uses: actions/checkout@v3
Expand All @@ -37,6 +37,9 @@ jobs:
pdm config python.use_venv false
pdm install -d
- name: Package JS did resolver to test against
run: cd ../did-resolver && yarn prepack && cd -

- name: Test with pytest
run: |
pdm run -s pytest tests

0 comments on commit cb4be13

Please sign in to comment.