cumulusci-plus-azure-devops 0.0.0.dev1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. cumulusci_plus_azure_devops-0.0.0.dev1/.gitignore +83 -0
  2. cumulusci_plus_azure_devops-0.0.0.dev1/LICENSE +674 -0
  3. cumulusci_plus_azure_devops-0.0.0.dev1/PKG-INFO +77 -0
  4. cumulusci_plus_azure_devops-0.0.0.dev1/README.md +40 -0
  5. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/__about__.py +1 -0
  6. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/__init__.py +3 -0
  7. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/azure_devops.py +35 -0
  8. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/cumulusci_plugin.yml +50 -0
  9. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/utils/ado.py +205 -0
  10. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/utils/common/artifacttool.py +226 -0
  11. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/utils/common/artifacttool_updater.py +233 -0
  12. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/utils/common/client_tool/__init__.py +0 -0
  13. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/utils/common/client_tool/client_tool_client.py +60 -0
  14. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/utils/common/client_tool/models/__init__.py +3 -0
  15. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/utils/common/client_tool/models/client_tool_release.py +22 -0
  16. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/utils/common/external_tool.py +102 -0
  17. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/utils/common/tests/test_artifacttool_updater.py +318 -0
  18. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/utils/tests/test_ado.py +182 -0
  19. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/vcs/ado/__init__.py +21 -0
  20. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/vcs/ado/adapter.py +1465 -0
  21. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/vcs/ado/dependencies/__init__.py +0 -0
  22. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/vcs/ado/dependencies/ado_dependencies.py +196 -0
  23. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/vcs/ado/dependencies/ado_resolvers.py +239 -0
  24. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/vcs/ado/exceptions.py +11 -0
  25. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/vcs/ado/generator/__init__.py +27 -0
  26. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/vcs/ado/service.py +237 -0
  27. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/vcs/ado/source/azure_devops.py +68 -0
  28. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/vcs/ado/tests/test_adapter.py +503 -0
  29. cumulusci_plus_azure_devops-0.0.0.dev1/cciplus_ado/vcs/ado/tests/test_service.py +405 -0
  30. cumulusci_plus_azure_devops-0.0.0.dev1/pyproject.toml +80 -0
@@ -0,0 +1,83 @@
1
+ # OS cruft
2
+ .DS_Store
3
+
4
+ # CumulusCI config and output
5
+ .cci
6
+ docs/api/
7
+ docs/_build/
8
+ github_release_notes.html
9
+ tmp
10
+
11
+ # Distribution / packaging
12
+ *.egg
13
+ *.egg-info/
14
+ .Python
15
+ .installed.cfg
16
+ develop-eggs/
17
+ dist/
18
+ eggs/
19
+ env/
20
+ lib/
21
+ lib64/
22
+ parts/
23
+ pip-wheel-metadata
24
+ sdist/
25
+ var/
26
+
27
+ # Miscellaneous Python cruft
28
+ .pdbrc
29
+ .pdbrc.py
30
+ .python-version
31
+ venv/
32
+
33
+ # Byte-compiled / optimized / DLL files
34
+ __pycache__/
35
+ *.py[cod]
36
+ *.pkl
37
+
38
+ # Installer logs
39
+ pip-log.txt
40
+ pip-delete-this-directory.txt
41
+
42
+ # Unit test / coverage reports
43
+ .cache/
44
+ .coverage
45
+ .coverage.*
46
+ .mypy_cache/
47
+ .pytest_cache/
48
+ .tox/
49
+ cov.xml
50
+ htmlcov/
51
+ large_cassettes/
52
+ .noseids
53
+ nosetests.xml
54
+ pytestdebug.log
55
+ results_junit.xml
56
+ test_results.json
57
+ log.html
58
+ report.html
59
+ output.xml
60
+
61
+ # Robot
62
+ *.webm
63
+ .pabotsuitenames
64
+ geckodriver*.log
65
+ pabot_results/
66
+ playwright-log.txt
67
+ robot/CumulusCI/results/
68
+
69
+ # Salesforce
70
+ **/.sfdx
71
+ .sf
72
+
73
+ # direnv
74
+ .direnv
75
+ .envrc
76
+
77
+ # Editors
78
+ *~
79
+ .*.swp
80
+ .*.swo
81
+ .vscode/
82
+ .idea/
83
+ tags