Skip to content

Commit

Permalink
Merge remote-tracking branch 'saltstack/3006.x' into merge-forward
Browse files Browse the repository at this point in the history
  • Loading branch information
dwoz committed Dec 16, 2023
2 parents 6007805 + 2e8d010 commit ef24948
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/pytests/unit/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import asyncio
import os

import pytest

Expand All @@ -24,6 +25,7 @@ def minion_opts(tmp_path):
dirpath.mkdir(parents=True)
opts[name] = str(dirpath)
opts["log_file"] = "logs/minion.log"
opts["conf_file"] = os.path.join(opts["conf_dir"], "minion")
return opts


Expand All @@ -41,6 +43,7 @@ def master_opts(tmp_path):
dirpath.mkdir(parents=True)
opts[name] = str(dirpath)
opts["log_file"] = "logs/master.log"
opts["conf_file"] = os.path.join(opts["conf_dir"], "master")
return opts


Expand All @@ -59,6 +62,7 @@ def syndic_opts(tmp_path):
dirpath.mkdir(parents=True)
opts[name] = str(dirpath)
opts["log_file"] = "logs/syndic.log"
opts["conf_file"] = os.path.join(opts["conf_dir"], "syndic")
return opts


Expand Down

0 comments on commit ef24948

Please sign in to comment.