We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
find
1 parent 9abd745 commit 4f87649Copy full SHA for 4f87649
1 file changed
tox.ini
@@ -2,13 +2,19 @@
2
minversion = 3.7.0
3
skipsdist = true
4
allowlist_external = /usr/bin/env
5
-envlist = py3
+envlist = py3-{linux,mac}
6
7
[testenv]
8
+platform =
9
+ linux: linux
10
+ mac: darwin
11
passenv = OUTPUT REPEATERBOOK_USER REPEATERBOOK_PASSWD
12
+setenv =
13
+ !mac: FIND_OPTS = -executable
14
+ mac: FIND_OPTS = -perm '+111'
15
deps =
16
dzcb~=0.1
17
commands =
18
/usr/bin/env find {toxinidir}/input \
19
-name "generate.sh" \
- -executable -exec \{\} ;
20
+ {env:FIND_OPTS} -exec \{\} ;
0 commit comments