Use double quotes for nox_session

This commit is contained in:
Twangboy 2023-02-14 10:30:46 -07:00 committed by Pedro Algarvio
parent 74858a9a54
commit fcfa1e0abb
2 changed files with 2 additions and 2 deletions

View file

@ -1796,7 +1796,7 @@ def test_pkgs(session):
"""
pytest pkg tests session
"""
_pkg_test(session, ["pkg/tests"], "pkg")
_pkg_test(session, ["pkg/tests/"], "pkg")
@nox.session(python=_PYTHON_VERSIONS, name="test-upgrade-pkgs")

View file

@ -1130,7 +1130,7 @@ class VM:
"-f",
f"{self.upload_path.joinpath('noxfile.py').as_posix()}",
"-e",
f"'{nox_session}'",
f'"{nox_session}"',
]
if nox_args:
cmd += nox_args