devopsdriver 0.1.50__tar.gz → 0.1.51__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 (50) hide show
  1. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/PKG-INFO +2 -2
  2. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/README.md +1 -1
  3. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/__init__.py +1 -1
  4. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/clients.py +2 -0
  5. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver.egg-info/PKG-INFO +2 -2
  6. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_azure_clients.py +2 -1
  7. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/LICENSE +0 -0
  8. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/__init__.py +0 -0
  9. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/azureobject.py +0 -0
  10. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/builds/__init__.py +0 -0
  11. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/builds/build.py +0 -0
  12. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/builds/client.py +0 -0
  13. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/pipeline/__init__.py +0 -0
  14. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/pipeline/client.py +0 -0
  15. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/pipeline/log.py +0 -0
  16. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/pipeline/pipeline.py +0 -0
  17. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/pipeline/run.py +0 -0
  18. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/timestamp.py +0 -0
  19. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/workitem/__init__.py +0 -0
  20. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/workitem/client.py +0 -0
  21. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/azdo/workitem/wiql.py +0 -0
  22. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/dataobject.py +0 -0
  23. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/github/__init__.py +0 -0
  24. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/github/client.py +0 -0
  25. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/manage_settings.py +0 -0
  26. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/sendmail.py +0 -0
  27. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/settings.py +0 -0
  28. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/template.py +0 -0
  29. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver/templates/manage_settings.txt.mako +0 -0
  30. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver.egg-info/SOURCES.txt +0 -0
  31. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver.egg-info/dependency_links.txt +0 -0
  32. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver.egg-info/entry_points.txt +0 -0
  33. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver.egg-info/requires.txt +0 -0
  34. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/devopsdriver.egg-info/top_level.txt +0 -0
  35. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/pyproject.toml +0 -0
  36. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/setup.cfg +0 -0
  37. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_azure_azureobject.py +0 -0
  38. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_azure_build.py +0 -0
  39. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_azure_build_client.py +0 -0
  40. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_azure_pipeline.py +0 -0
  41. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_azure_pipeline_client.py +0 -0
  42. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_azure_pipeline_run.py +0 -0
  43. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_azure_timestamp.py +0 -0
  44. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_azure_workitem_client.py +0 -0
  45. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_azure_workitem_wiql.py +0 -0
  46. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_dataobject.py +0 -0
  47. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_manage_settings.py +0 -0
  48. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_sendmail.py +0 -0
  49. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_settings.py +0 -0
  50. {devopsdriver-0.1.50 → devopsdriver-0.1.51}/tests/test_template.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devopsdriver
3
- Version: 0.1.50
3
+ Version: 0.1.51
4
4
  Summary: DevOps tools
5
5
  Author-email: Marc Page <marcallenpage@gmail.com>
6
6
  License: This is free and unencumbered software released into the public domain.
@@ -64,7 +64,7 @@ Dynamic: license-file
64
64
  # devops-driver
65
65
 
66
66
  ![status sheild](https://img.shields.io/static/v1?label=status&message=beta&color=blue&style=plastic)
67
- [![status sheild](https://img.shields.io/static/v1?label=released&message=v0.1.50&color=active&style=plastic)](https://pypi.org/project/devopsdriver/0.1.50/)
67
+ [![status sheild](https://img.shields.io/static/v1?label=released&message=v0.1.51&color=active&style=plastic)](https://pypi.org/project/devopsdriver/0.1.51/)
68
68
  [![GitHub](https://img.shields.io/github/license/marcpage/devops-driver?style=plastic)](https://github.com/marcpage/devops-driver?tab=Unlicense-1-ov-file#readme)
69
69
  [![GitHub contributors](https://img.shields.io/github/contributors/marcpage/devops-driver?style=flat)](https://github.com/marcpage/devops-driver/graphs/contributors)
70
70
  [![PR's Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)
@@ -1,7 +1,7 @@
1
1
  # devops-driver
2
2
 
3
3
  ![status sheild](https://img.shields.io/static/v1?label=status&message=beta&color=blue&style=plastic)
4
- [![status sheild](https://img.shields.io/static/v1?label=released&message=v0.1.50&color=active&style=plastic)](https://pypi.org/project/devopsdriver/0.1.50/)
4
+ [![status sheild](https://img.shields.io/static/v1?label=released&message=v0.1.51&color=active&style=plastic)](https://pypi.org/project/devopsdriver/0.1.51/)
5
5
  [![GitHub](https://img.shields.io/github/license/marcpage/devops-driver?style=plastic)](https://github.com/marcpage/devops-driver?tab=Unlicense-1-ov-file#readme)
6
6
  [![GitHub contributors](https://img.shields.io/github/contributors/marcpage/devops-driver?style=flat)](https://github.com/marcpage/devops-driver/graphs/contributors)
7
7
  [![PR's Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)
@@ -7,6 +7,6 @@ from .azdo.clients import Azure
7
7
  from .github.client import Github
8
8
 
9
9
 
10
- __version__ = "0.1.50"
10
+ __version__ = "0.1.51"
11
11
  __author__ = "Marc Page"
12
12
  __credits__ = ""
@@ -53,6 +53,7 @@ class Azure: # pylint: disable=too-few-public-methods,too-many-instance-attribu
53
53
  "core": self.connection.clients_v7_1.get_core_client,
54
54
  "build": self.connection.clients_v7_1.get_build_client,
55
55
  "identity": self.connection.clients_v7_1.get_identity_client,
56
+ "graph": self.connection.clients_v7_1.get_graph_client,
56
57
  }
57
58
  unsupported_clients = set(clients) - set(client_calls)
58
59
  assert not unsupported_clients, f"{unsupported_clients} not supported"
@@ -63,6 +64,7 @@ class Azure: # pylint: disable=too-few-public-methods,too-many-instance-attribu
63
64
  self.git = Azure._Client(Azure.__client("git", clients, client_calls))
64
65
  self.build = BClient(Azure.__client("build", clients, client_calls))
65
66
  self.identity = Azure._Client(Azure.__client("identity", clients, client_calls))
67
+ self.graph = Azure._Client(Azure.__client("graph", clients, client_calls))
66
68
 
67
69
  @staticmethod
68
70
  def __client(name: str, clients: dict, calls: dict) -> any:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devopsdriver
3
- Version: 0.1.50
3
+ Version: 0.1.51
4
4
  Summary: DevOps tools
5
5
  Author-email: Marc Page <marcallenpage@gmail.com>
6
6
  License: This is free and unencumbered software released into the public domain.
@@ -64,7 +64,7 @@ Dynamic: license-file
64
64
  # devops-driver
65
65
 
66
66
  ![status sheild](https://img.shields.io/static/v1?label=status&message=beta&color=blue&style=plastic)
67
- [![status sheild](https://img.shields.io/static/v1?label=released&message=v0.1.50&color=active&style=plastic)](https://pypi.org/project/devopsdriver/0.1.50/)
67
+ [![status sheild](https://img.shields.io/static/v1?label=released&message=v0.1.51&color=active&style=plastic)](https://pypi.org/project/devopsdriver/0.1.51/)
68
68
  [![GitHub](https://img.shields.io/github/license/marcpage/devops-driver?style=plastic)](https://github.com/marcpage/devops-driver?tab=Unlicense-1-ov-file#readme)
69
69
  [![GitHub contributors](https://img.shields.io/github/contributors/marcpage/devops-driver?style=flat)](https://github.com/marcpage/devops-driver/graphs/contributors)
70
70
  [![PR's Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat)](http://makeapullrequest.com)
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env python3
2
2
 
3
3
 
4
- """ test azure client logic """
4
+ """test azure client logic"""
5
5
 
6
6
 
7
7
  from tempfile import TemporaryDirectory
@@ -32,6 +32,7 @@ class MockConnection: # pylint: disable=too-few-public-methods
32
32
  "get_core_client",
33
33
  "get_build_client",
34
34
  "get_identity_client",
35
+ "get_graph_client",
35
36
  }
36
37
 
37
38
  def __getattr__(self, name: str) -> str:
File without changes
File without changes