-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpyproject.toml
46 lines (44 loc) · 1.36 KB
/
pyproject.toml
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
[tool.pytest.ini_options]
markers = [
"model: tests that need to run a full mozaik model to execute. Can be extremely slow.",
"VogelsAbbott2005: tests that need to run the VogelsAbbott2005 mozaik model to execute.",
"LSV1M: tests that need to run the LSV1M model to execute. Will be very very slow (1+ hour).",
"LSV1M_tiny: tests that need to run a tiny version of the LSV1M model to execute. Should be ",
"merge: tests for the datastore merging",
"mpi: tests using mpi to run the model",
"mpi_explosion: tests using mpi to run the model and tests the explosion detection",
"not_github: tests using mpi to run the model",
"stepcurrentmodule: tests using the nest stepcurrent module to run the model",
]
[tool.black]
exclude = '''
(
# Remove progressively as unit tests get added
# We do not want to refactor without checking functionality
setup.py
| mozaik/core.py
| mozaik/cli.py
| mozaik/space.py
| mozaik/controller.py
| mozaik/__init__.py
| mozaik/meta_workflow
| mozaik/connectors
| mozaik/tools
| mozaik/experiments/__init__.py
| mozaik/experiments/direct_stimulations_mixins.py
| mozaik/experiments/vision.py
| mozaik/visualization
| mozaik/models
| mozaik/storage
| mozaik/analysis
| mozaik/sheets
| mozaik/stimuli
| examples/VogelsAbbott2005
| examples/TextureModel
| build
| doc
| imagen
| nest-simulator-2.20.1
| \.git
)
'''