├── .cookiecutter.json ├── .darglint ├── .flake8 ├── .gitattributes ├── .github ├── dependabot.yml ├── labels.yml ├── release-drafter.yml └── workflows │ ├── constraints.txt │ ├── labeler.yml │ ├── release.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTING.rst ├── LICENSE.rst ├── README.rst ├── codecov.yml ├── docs ├── _static │ └── logo.svg ├── assets │ ├── generic_menu.txt │ └── generic_menu_csv │ │ ├── breakfast.csv │ │ ├── christmass_at_grandmas.csv │ │ ├── dangerous_combinations.csv │ │ ├── full_meal.csv │ │ ├── light_meal.csv │ │ ├── snack.csv │ │ └── spicy_meal.csv ├── codeofconduct.rst ├── concepts.rst ├── conf.py ├── contributing.rst ├── index.rst ├── license.rst ├── reference.rst ├── requirements.txt ├── usage.rst ├── usage_ardupilot.rst ├── usage_create_menu.rst └── usage_set_paths.rst ├── noxfile.py ├── poetry.lock ├── pyproject.toml ├── src └── parasect │ ├── __init__.py │ ├── __main__.py │ ├── _helpers.py │ ├── build_lib.py │ ├── compare_lib.py │ └── py.typed └── tests ├── __init__.py ├── assets ├── ardupilot │ ├── Parrot_Bebop.param │ ├── Parrot_Bebop2.param │ ├── black_20231221.params │ ├── copter.parm │ ├── menu │ │ ├── custom_dishes │ │ │ ├── battery.yaml │ │ │ ├── mission.yaml │ │ │ └── tuning.yaml │ │ ├── defaults.param │ │ ├── meals.yaml │ │ └── staple_dishes │ │ │ ├── calibration.yaml │ │ │ ├── header.yaml │ │ │ └── operator.yaml │ └── sitl_copter_defaults.parm ├── generic │ └── menu │ │ ├── custom_dishes │ │ ├── bread.yaml │ │ ├── coffee.yaml │ │ ├── dairy.yaml │ │ ├── desert.yaml │ │ ├── extra_quantities.yaml │ │ ├── fruit.yaml │ │ ├── meat_and_potatoes.yaml │ │ └── salad.yaml │ │ ├── meals.yaml │ │ └── staple_dishes │ │ ├── calibration.yaml │ │ ├── footer.yaml │ │ ├── header.yaml │ │ └── operator.yaml ├── px4 │ ├── 607f3c36-a9f8-428e-bc16-2c2615b84291.params │ ├── 6fcfa754-186b-41ae-90a4-8de386f712c3.params │ ├── README.txt │ ├── default_gazebo_3fe4c6e.params │ ├── default_jmavsim_3fe4c6e.params │ ├── menu │ │ ├── custom_dishes │ │ │ ├── battery.yaml │ │ │ ├── sih.yaml │ │ │ └── tuning.yaml │ │ ├── meals.yaml │ │ └── staple_dishes │ │ │ ├── calibration.yaml │ │ │ ├── footer.yaml │ │ │ ├── header.yaml │ │ │ └── operator.yaml │ └── parameters_3fe4c6e.xml └── testing │ └── menu │ ├── custom_dishes │ └── dish_1.yaml │ ├── meals.yaml │ └── staple_dishes │ ├── calibration.yaml │ ├── footer.yaml │ ├── header.yaml │ └── operator.yaml ├── test_build_lib.py ├── test_compare_lib.py ├── test_helpers.py ├── test_main.py ├── test_meal_menus.py └── utils.py /.cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/.cookiecutter.json -------------------------------------------------------------------------------- /.darglint: -------------------------------------------------------------------------------- 1 | [darglint] 2 | strictness = long 3 | -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/constraints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/.github/workflows/constraints.txt -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/README.rst -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/_static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/_static/logo.svg -------------------------------------------------------------------------------- /docs/assets/generic_menu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/assets/generic_menu.txt -------------------------------------------------------------------------------- /docs/assets/generic_menu_csv/breakfast.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/assets/generic_menu_csv/breakfast.csv -------------------------------------------------------------------------------- /docs/assets/generic_menu_csv/christmass_at_grandmas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/assets/generic_menu_csv/christmass_at_grandmas.csv -------------------------------------------------------------------------------- /docs/assets/generic_menu_csv/dangerous_combinations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/assets/generic_menu_csv/dangerous_combinations.csv -------------------------------------------------------------------------------- /docs/assets/generic_menu_csv/full_meal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/assets/generic_menu_csv/full_meal.csv -------------------------------------------------------------------------------- /docs/assets/generic_menu_csv/light_meal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/assets/generic_menu_csv/light_meal.csv -------------------------------------------------------------------------------- /docs/assets/generic_menu_csv/snack.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/assets/generic_menu_csv/snack.csv -------------------------------------------------------------------------------- /docs/assets/generic_menu_csv/spicy_meal.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/assets/generic_menu_csv/spicy_meal.csv -------------------------------------------------------------------------------- /docs/codeofconduct.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CODE_OF_CONDUCT.rst 2 | -------------------------------------------------------------------------------- /docs/concepts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/concepts.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../LICENSE.rst 2 | -------------------------------------------------------------------------------- /docs/reference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/reference.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /docs/usage_ardupilot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/usage_ardupilot.rst -------------------------------------------------------------------------------- /docs/usage_create_menu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/usage_create_menu.rst -------------------------------------------------------------------------------- /docs/usage_set_paths.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/docs/usage_set_paths.rst -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/noxfile.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/parasect/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/src/parasect/__init__.py -------------------------------------------------------------------------------- /src/parasect/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/src/parasect/__main__.py -------------------------------------------------------------------------------- /src/parasect/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/src/parasect/_helpers.py -------------------------------------------------------------------------------- /src/parasect/build_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/src/parasect/build_lib.py -------------------------------------------------------------------------------- /src/parasect/compare_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/src/parasect/compare_lib.py -------------------------------------------------------------------------------- /src/parasect/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """Test suite for the parasect package.""" 2 | -------------------------------------------------------------------------------- /tests/assets/ardupilot/Parrot_Bebop.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/ardupilot/Parrot_Bebop.param -------------------------------------------------------------------------------- /tests/assets/ardupilot/Parrot_Bebop2.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/ardupilot/Parrot_Bebop2.param -------------------------------------------------------------------------------- /tests/assets/ardupilot/black_20231221.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/ardupilot/black_20231221.params -------------------------------------------------------------------------------- /tests/assets/ardupilot/copter.parm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/ardupilot/copter.parm -------------------------------------------------------------------------------- /tests/assets/ardupilot/menu/custom_dishes/battery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/ardupilot/menu/custom_dishes/battery.yaml -------------------------------------------------------------------------------- /tests/assets/ardupilot/menu/custom_dishes/mission.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/ardupilot/menu/custom_dishes/mission.yaml -------------------------------------------------------------------------------- /tests/assets/ardupilot/menu/custom_dishes/tuning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/ardupilot/menu/custom_dishes/tuning.yaml -------------------------------------------------------------------------------- /tests/assets/ardupilot/menu/defaults.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/ardupilot/menu/defaults.param -------------------------------------------------------------------------------- /tests/assets/ardupilot/menu/meals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/ardupilot/menu/meals.yaml -------------------------------------------------------------------------------- /tests/assets/ardupilot/menu/staple_dishes/calibration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/ardupilot/menu/staple_dishes/calibration.yaml -------------------------------------------------------------------------------- /tests/assets/ardupilot/menu/staple_dishes/header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/ardupilot/menu/staple_dishes/header.yaml -------------------------------------------------------------------------------- /tests/assets/ardupilot/menu/staple_dishes/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/ardupilot/menu/staple_dishes/operator.yaml -------------------------------------------------------------------------------- /tests/assets/ardupilot/sitl_copter_defaults.parm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/ardupilot/sitl_copter_defaults.parm -------------------------------------------------------------------------------- /tests/assets/generic/menu/custom_dishes/bread.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/generic/menu/custom_dishes/bread.yaml -------------------------------------------------------------------------------- /tests/assets/generic/menu/custom_dishes/coffee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/generic/menu/custom_dishes/coffee.yaml -------------------------------------------------------------------------------- /tests/assets/generic/menu/custom_dishes/dairy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/generic/menu/custom_dishes/dairy.yaml -------------------------------------------------------------------------------- /tests/assets/generic/menu/custom_dishes/desert.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/generic/menu/custom_dishes/desert.yaml -------------------------------------------------------------------------------- /tests/assets/generic/menu/custom_dishes/extra_quantities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/generic/menu/custom_dishes/extra_quantities.yaml -------------------------------------------------------------------------------- /tests/assets/generic/menu/custom_dishes/fruit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/generic/menu/custom_dishes/fruit.yaml -------------------------------------------------------------------------------- /tests/assets/generic/menu/custom_dishes/meat_and_potatoes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/generic/menu/custom_dishes/meat_and_potatoes.yaml -------------------------------------------------------------------------------- /tests/assets/generic/menu/custom_dishes/salad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/generic/menu/custom_dishes/salad.yaml -------------------------------------------------------------------------------- /tests/assets/generic/menu/meals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/generic/menu/meals.yaml -------------------------------------------------------------------------------- /tests/assets/generic/menu/staple_dishes/calibration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/generic/menu/staple_dishes/calibration.yaml -------------------------------------------------------------------------------- /tests/assets/generic/menu/staple_dishes/footer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/generic/menu/staple_dishes/footer.yaml -------------------------------------------------------------------------------- /tests/assets/generic/menu/staple_dishes/header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/generic/menu/staple_dishes/header.yaml -------------------------------------------------------------------------------- /tests/assets/generic/menu/staple_dishes/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/generic/menu/staple_dishes/operator.yaml -------------------------------------------------------------------------------- /tests/assets/px4/607f3c36-a9f8-428e-bc16-2c2615b84291.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/607f3c36-a9f8-428e-bc16-2c2615b84291.params -------------------------------------------------------------------------------- /tests/assets/px4/6fcfa754-186b-41ae-90a4-8de386f712c3.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/6fcfa754-186b-41ae-90a4-8de386f712c3.params -------------------------------------------------------------------------------- /tests/assets/px4/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/README.txt -------------------------------------------------------------------------------- /tests/assets/px4/default_gazebo_3fe4c6e.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/default_gazebo_3fe4c6e.params -------------------------------------------------------------------------------- /tests/assets/px4/default_jmavsim_3fe4c6e.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/default_jmavsim_3fe4c6e.params -------------------------------------------------------------------------------- /tests/assets/px4/menu/custom_dishes/battery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/menu/custom_dishes/battery.yaml -------------------------------------------------------------------------------- /tests/assets/px4/menu/custom_dishes/sih.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/menu/custom_dishes/sih.yaml -------------------------------------------------------------------------------- /tests/assets/px4/menu/custom_dishes/tuning.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/menu/custom_dishes/tuning.yaml -------------------------------------------------------------------------------- /tests/assets/px4/menu/meals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/menu/meals.yaml -------------------------------------------------------------------------------- /tests/assets/px4/menu/staple_dishes/calibration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/menu/staple_dishes/calibration.yaml -------------------------------------------------------------------------------- /tests/assets/px4/menu/staple_dishes/footer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/menu/staple_dishes/footer.yaml -------------------------------------------------------------------------------- /tests/assets/px4/menu/staple_dishes/header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/menu/staple_dishes/header.yaml -------------------------------------------------------------------------------- /tests/assets/px4/menu/staple_dishes/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/menu/staple_dishes/operator.yaml -------------------------------------------------------------------------------- /tests/assets/px4/parameters_3fe4c6e.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/px4/parameters_3fe4c6e.xml -------------------------------------------------------------------------------- /tests/assets/testing/menu/custom_dishes/dish_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/testing/menu/custom_dishes/dish_1.yaml -------------------------------------------------------------------------------- /tests/assets/testing/menu/meals.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/testing/menu/meals.yaml -------------------------------------------------------------------------------- /tests/assets/testing/menu/staple_dishes/calibration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/testing/menu/staple_dishes/calibration.yaml -------------------------------------------------------------------------------- /tests/assets/testing/menu/staple_dishes/footer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/testing/menu/staple_dishes/footer.yaml -------------------------------------------------------------------------------- /tests/assets/testing/menu/staple_dishes/header.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/testing/menu/staple_dishes/header.yaml -------------------------------------------------------------------------------- /tests/assets/testing/menu/staple_dishes/operator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/assets/testing/menu/staple_dishes/operator.yaml -------------------------------------------------------------------------------- /tests/test_build_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/test_build_lib.py -------------------------------------------------------------------------------- /tests/test_compare_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/test_compare_lib.py -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /tests/test_meal_menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/test_meal_menus.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AvyFly/parasect/HEAD/tests/utils.py --------------------------------------------------------------------------------