Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
tests
├── pytest_scripts
│   ├── conftest.py
│   ├── __init__.py
│   ├── pytest.ini
│   └── test_actor.py
.
.
.

 Example

The Actor Testing Framework includes a sample directory that holds an example of using a framework called the eq2eq fake actor that simply rewrites one IDS to another.

Code Block
languagebash
Project root
|-- example	# <-- This directory
|   |-- .gitlab-ci.yml
|   |-- actor
|   |-- native-codes
|   |-- tests
|   |   |-- README.md
|   |   |-- __init__.py
|   |   |-- ci_scripts
|   |   |   |-- .gitlab-ci.yml
|   |   |   `-- .iter-ci.sh
|   |   |-- configs
|   |   |   |-- actor_configuration.yml
|   |   |   `-- ids_configuration.yml
|   |   |-- example
|   |   |   `-- tests
|   |   |       `-- test.sh
|   |   |-- input_pulse_file
|   |   |   |-- GITLAB
|   |   |   `-- ITER
|   |   |-- main_code_run
|   |   |   `-- run_actor.sh
|   |   |-- modules
|   |   |   |-- modules_gitlab.yml
|   |   |   `-- modules_iter.yml
|   |   |-- native_codes_build
|   |   |   `-- build_actor.sh
|   |   |-- pytest_scripts
|   |   |   |-- __init__.py
|   |   |   |-- conftest.py
|   |   |   |-- pytest.ini
|   |   |   |-- test_actor.py
|   |   |   `-- test_actor.py~
|   |   |-- test.sh
|   |   `-- utils
|   |       |-- get_actor_info.py
|   |       |-- get_ids_info.py
|   |       `-- get_ids_name.py
|   `-- workflows