-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathtox.ini
More file actions
24 lines (22 loc) · 755 Bytes
/
tox.ini
File metadata and controls
24 lines (22 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[tox]
envlist = py38, py39, py310, py311, py312
[testenv]
commands =
pytest sdv/test
stix-validator examples/stix/all_valid.xml
stix-validator examples/stix/all_valid.xml --json
#stix-validator --profile examples/stix/Example_STIX_Profile.xlsx examples/stix/all_valid.xml
#stix-validator --profile examples/stix/Example_STIX_Profile.xlsx examples/stix/all_valid.xml --json
stix-validator --best-practices examples/stix/all_valid.xml
stix-validator --best-practices examples/stix/all_valid.xml --json
cybox-validator examples/cybox/schema_valid.xml
cybox-validator examples/cybox/schema_valid.xml --json
deps =
-rrequirements.txt
[travis]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312