├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── super_pipeline.py └── test ├── __init__.py ├── expectations_configs └── expectations_config_1.json ├── great_expectations_tests.json ├── input_datasets └── test_input_1.csv └── test_super_pipeline.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatexpectationslabs/put-data-pipeline-under-test-with-pytest-and-great-expectations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatexpectationslabs/put-data-pipeline-under-test-with-pytest-and-great-expectations/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatexpectationslabs/put-data-pipeline-under-test-with-pytest-and-great-expectations/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /super_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatexpectationslabs/put-data-pipeline-under-test-with-pytest-and-great-expectations/HEAD/super_pipeline.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expectations_configs/expectations_config_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatexpectationslabs/put-data-pipeline-under-test-with-pytest-and-great-expectations/HEAD/test/expectations_configs/expectations_config_1.json -------------------------------------------------------------------------------- /test/great_expectations_tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatexpectationslabs/put-data-pipeline-under-test-with-pytest-and-great-expectations/HEAD/test/great_expectations_tests.json -------------------------------------------------------------------------------- /test/input_datasets/test_input_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatexpectationslabs/put-data-pipeline-under-test-with-pytest-and-great-expectations/HEAD/test/input_datasets/test_input_1.csv -------------------------------------------------------------------------------- /test/test_super_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatexpectationslabs/put-data-pipeline-under-test-with-pytest-and-great-expectations/HEAD/test/test_super_pipeline.py --------------------------------------------------------------------------------