Skip to content

Commit d545837

Browse files
authored
broken integration because a validation on steps (#111)
* broken integration because a validation on steps * linter * 3.7
1 parent f71ec67 commit d545837

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
strategy:
2222
matrix:
23-
python-version: [3.6, 3.7, 3.8]
23+
python-version: [3.7, 3.8]
2424
steps:
2525
- uses: actions/checkout@v2
2626
- name: Set up Python ${{ matrix.python-version }}

mati/resources/verifications.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ class Verification(Resource):
3131

3232
def __post_init__(self):
3333
docs = []
34-
self.steps = [Liveness(**step) for step in self.steps]
34+
self.steps = [
35+
Liveness(**step) for step in self.steps if step['id'] == 'liveness'
36+
]
3537
for doc in self.documents:
3638
doc['steps'] = [
3739
VerificationDocumentStep(**step) for step in doc['steps']

mati/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.0.2' # pragma: no cover
1+
__version__ = '2.0.3' # pragma: no cover

0 commit comments

Comments
 (0)