Browse Source

Merge pull request #2672 from nginx-proxy/dependabot/pip/test/requirements/pytest-9.0.0

ci: bump pytest from 8.4.2 to 9.0.0 in /test/requirements
Nicolas Duchon 1 week ago
parent
commit
e3ac6c067c
2 changed files with 3 additions and 3 deletions
  1. 1 1
      test/requirements/python-requirements.txt
  2. 2 2
      test/test_build/test_build.py

+ 1 - 1
test/requirements/python-requirements.txt

@@ -1,7 +1,7 @@
 backoff==2.2.1
 docker==7.1.0
 packaging==25.0
-pytest==8.4.2
+pytest==9.0.0
 pytest-ignore-flaky==2.2.1
 requests==2.32.5
 urllib3==2.5.0

+ 2 - 2
test/test_build/test_build.py

@@ -45,9 +45,9 @@ def test_build_nginx_proxy_tester(docker_build):
     assert docker_build == "nginx-proxy-tester-ci"
 
 def test_run_nginx_proxy_tester(docker_build):
-    # Run the container with 'pytest -v' command to output version info
+    # Run the container with 'pytest --version' command to output version info
     container = client.containers.run("nginx-proxy-tester-ci",
-        command = "pytest -V",
+        command = "pytest --version",
         detach = True,
     )