We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fd2c8c commit f10c3adCopy full SHA for f10c3ad
1 file changed
.github/actions/test/action.yml
@@ -4,6 +4,11 @@ name:
4
description:
5
Run pytest, and run the doctest runner (shapefile.py as a script).
6
7
+inputs:
8
+ extra_args:
9
+ type: string
10
+ default: '-m "not network"'
11
+
12
runs:
13
using: "composite"
14
steps:
@@ -13,7 +18,7 @@ runs:
18
19
- name: Doctests
15
20
shell: bash
16
- run: python shapefile.py -m "not network"
21
+ run: python shapefile.py ${{ inputs.extra_args }}
17
22
23
- name: Install test dependencies.
24
@@ -24,7 +29,7 @@ runs:
29
- name: Pytest
25
30
26
31
run: |
27
- pytest -m "not network"
32
+ pytest ${{ inputs.extra_args }}
28
33
34
- name: Show versions for logs.
35
0 commit comments