├── .github └── workflows │ └── cicd.yml ├── .gitignore ├── Code1.py ├── Code2.py ├── LICENSE ├── README.md ├── __init__.py ├── azure-pipelines.yml ├── images ├── cicd-workflow.png ├── create-personal-project.png ├── create-project-in-staging.png ├── create-staging-folder.png ├── release-pipeline-devops.png ├── release-pipeline-github-actions.png ├── release-pipeline.png └── release-tasks-devops.png ├── my_package ├── __init__.py ├── code1.py └── code2.py ├── terraform └── azuredevops │ ├── README.md │ ├── cluster.tf │ ├── devops.tf │ ├── main.tf │ ├── repo.tf │ └── variables.tf └── unit-tests ├── test_with_arbitrary_files.py └── test_with_percent_run.py /.github/workflows/cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/.github/workflows/cicd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /Code1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/Code1.py -------------------------------------------------------------------------------- /Code2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/Code2.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /images/cicd-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/images/cicd-workflow.png -------------------------------------------------------------------------------- /images/create-personal-project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/images/create-personal-project.png -------------------------------------------------------------------------------- /images/create-project-in-staging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/images/create-project-in-staging.png -------------------------------------------------------------------------------- /images/create-staging-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/images/create-staging-folder.png -------------------------------------------------------------------------------- /images/release-pipeline-devops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/images/release-pipeline-devops.png -------------------------------------------------------------------------------- /images/release-pipeline-github-actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/images/release-pipeline-github-actions.png -------------------------------------------------------------------------------- /images/release-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/images/release-pipeline.png -------------------------------------------------------------------------------- /images/release-tasks-devops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/images/release-tasks-devops.png -------------------------------------------------------------------------------- /my_package/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /my_package/code1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/my_package/code1.py -------------------------------------------------------------------------------- /my_package/code2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/my_package/code2.py -------------------------------------------------------------------------------- /terraform/azuredevops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/terraform/azuredevops/README.md -------------------------------------------------------------------------------- /terraform/azuredevops/cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/terraform/azuredevops/cluster.tf -------------------------------------------------------------------------------- /terraform/azuredevops/devops.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/terraform/azuredevops/devops.tf -------------------------------------------------------------------------------- /terraform/azuredevops/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/terraform/azuredevops/main.tf -------------------------------------------------------------------------------- /terraform/azuredevops/repo.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/terraform/azuredevops/repo.tf -------------------------------------------------------------------------------- /terraform/azuredevops/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/terraform/azuredevops/variables.tf -------------------------------------------------------------------------------- /unit-tests/test_with_arbitrary_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/unit-tests/test_with_arbitrary_files.py -------------------------------------------------------------------------------- /unit-tests/test_with_percent_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexott/databricks-nutter-repos-demo/HEAD/unit-tests/test_with_percent_run.py --------------------------------------------------------------------------------