Skip to content

Commit

Permalink
Additional improvements to the ZMQHandler reliability
Browse files Browse the repository at this point in the history
  • Loading branch information
s0undt3ch committed Jun 16, 2021
1 parent 1e6f4a0 commit e038e0d
Show file tree
Hide file tree
Showing 16 changed files with 423 additions and 186 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ repos:
- id: pyupgrade
name: Rewrite Code to be Py3.5+
args: [--py3-plus]
exclude: (^src/saltfactories/utils/salt/.*\.py)
exclude: (^src/saltfactories/utils/saltext/.*\.py)

- repo: https://github.com/hakancelik96/unimport
rev: "31cc123640880e385159c719d2f12b5cf8586495"
Expand Down
1 change: 1 addition & 0 deletions .pylint-spelling-words
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ globals
hookspec
hostname
https
hwm
ico
ie
illumos
Expand Down
2 changes: 1 addition & 1 deletion docs/ref/saltfactories/utils/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ Utils
:glob:

*
salt/index
saltext/index
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. automodule:: saltfactories.utils.salt.engines.pytest_engine
.. automodule:: saltfactories.utils.saltext.engines.pytest_engine
:members:
:show-inheritance:
:inherited-members:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. automodule:: saltfactories.utils.salt
.. automodule:: saltfactories.utils.saltext
:members:
:show-inheritance:
:inherited-members:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.. automodule:: saltfactories.utils.salt.log_handlers.pytest_log_handler
.. automodule:: saltfactories.utils.saltext.log_handlers.pytest_log_handler
:members:
:show-inheritance:
:inherited-members:
Expand Down
1 change: 1 addition & 0 deletions requirements/tests.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
-r base.txt
docker
pytest-subtests
4 changes: 2 additions & 2 deletions src/saltfactories/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,14 +108,14 @@ def get_salt_log_handlers_path():
"""
Returns the path to the Salt log handler this plugin provides
"""
return CODE_ROOT_DIR / "utils" / "salt" / "log_handlers"
return CODE_ROOT_DIR / "utils" / "saltext" / "log_handlers"

@staticmethod
def get_salt_engines_path():
"""
Returns the path to the Salt engine this plugin provides
"""
return CODE_ROOT_DIR / "utils" / "salt" / "engines"
return CODE_ROOT_DIR / "utils" / "saltext" / "engines"

def final_minion_config_tweaks(self, config):
pytest_key = "pytest-minion"
Expand Down
File renamed without changes.
Empty file.
Loading

0 comments on commit e038e0d

Please sign in to comment.