File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff 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' ]
Original file line number Diff line number Diff line change 1- __version__ = '2.0.2 ' # pragma: no cover
1+ __version__ = '2.0.3 ' # pragma: no cover
You can’t perform that action at this time.
0 commit comments