forked from flexcompute/tidy3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
59 lines (56 loc) · 2.07 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tox]
envlist =
python3.7
python3.8
python3.9
python3.10
python3.11
[gh-actions]
python =
3.7: python3.7
3.8: python3.8
3.9: python3.9
3.10: python3.10
3.11: python3.11
[testenv]
setenv =
MPLBACKEND=agg
deps =
-rrequirements/dev.txt
commands =
pip install requests
black --check --diff . --line-length 100
python lint.py
pytest -rA tests/test_components/test_apodization.py
pytest -rA tests/test_components/test_base.py
pytest -rA tests/test_components/test_boundaries.py
pytest -rA tests/test_components/test_custom.py
pytest -rA tests/test_components/test_geometry.py
pytest -rA tests/test_components/test_grid.py
pytest -rA tests/test_components/test_grid_spec.py
pytest -rA tests/test_components/test_IO.py
pytest -rA tests/test_components/test_medium.py
pytest -rA tests/test_components/test_meshgenerate.py
pytest -rA tests/test_components/test_mode.py
pytest -rA tests/test_components/test_monitor.py
pytest -rA tests/test_components/test_field_projection.py
pytest -rA tests/test_components/test_sidewall.py
pytest -rA tests/test_components/test_simulation.py
pytest -rA tests/test_components/test_source.py
pytest -rA tests/test_components/test_types.py
pytest -rA tests/test_components/test_viz.py
pytest -rA tests/test_data/test_data_arrays.py
pytest -rA tests/test_data/test_monitor_data.py
pytest -rA tests/test_data/test_sim_data.py
pytest -rA tests/test_package/test_config.py
pytest -rA tests/test_package/test_log.py
pytest -rA tests/test_package/test_main.py
pytest -rA tests/test_package/test_make_script.py
pytest -rA tests/test_package/test_material_library.py
pytest -rA tests/test_plugins/test_component_modeler.py
pytest -rA tests/test_plugins/test_mode_solver.py
pytest -rA tests/test_plugins/test_dispersion_fitter.py
pytest -rA tests/test_plugins/test_resonance_finder.py
pytest -rA tests/test_web/test_auth.py
pytest -rA tests/test_web/test_task.py
pytest -rA tests/test_web/test_webapi.py