We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66b46af commit 17a55eaCopy full SHA for 17a55ea
test/integration/test_config.py
@@ -0,0 +1,7 @@
1
+from ansible_runner.config._base import BaseConfig
2
+
3
4
+def test_combine_python_and_file_settings(project_fixtures):
5
+ rc = BaseConfig(private_data_dir=str(project_fixtures / 'job_env'), settings={'job_timeout': 40})
6
+ rc._prepare_env()
7
+ assert rc.settings == {'job_timeout': 40, 'process_isolation': True}
0 commit comments