Is there a way to point pytest at a differnt pytest.ini file?
The application I am working on has one pytest.ini file that is used for running unittests when it spins up, and I do not want to modify that file.
I do however want to point pytest at a different file when running my automation tests via pytest.main()
pytest.main(['-p', 'no:django', '-v', '--json-report', '-m', test_marker])
Is there a way to tell pytest to use a pytest.ini file from another location?