PytestSetting Project Test System: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * Pytest") |
|||
Line 1: | Line 1: | ||
=Internal= | =Internal= | ||
* [[Pytest#Subjects|Pytest]] | * [[Pytest#Subjects|Pytest]] | ||
=Layout= | |||
<font size=-1> | |||
└── test | |||
├── bash | |||
│ └── datadog-dashboards | |||
│ ├── call-python.bats | |||
│ ├── data | |||
│ │ └── invalid-python | |||
│ ├── get-stack-name.bats | |||
│ └── libraries.bash | |||
├── data | |||
│ ├── dashboard-example.json | |||
│ └── experimental.json | |||
└── python | |||
├── datadog_automation | |||
│ ├── __pycache__ | |||
│ │ └── test_generate_stack_name.cpython-39-pytest-7.0.1.pyc | |||
│ └── test_generate_stack_name.py | |||
└── manual-test.py | |||
<font size=-1> |
Revision as of 02:38, 16 February 2022
Internal
Layout
└── test ├── bash │ └── datadog-dashboards │ ├── call-python.bats │ ├── data │ │ └── invalid-python │ ├── get-stack-name.bats │ └── libraries.bash ├── data │ ├── dashboard-example.json │ └── experimental.json └── python ├── datadog_automation │ ├── __pycache__ │ │ └── test_generate_stack_name.cpython-39-pytest-7.0.1.pyc │ └── test_generate_stack_name.py └── manual-test.py