Просмотр исходного кода

Revert "Run Azure integration tests serially under tox"

This reverts commit c4b42f5c96224f674c4ff8c04539ca8a02b6cf33.
Nuwan Goonasekera 10 часов назад
Родитель
Сommit
e4d17fa035
1 измененных файлов с 1 добавлено и 6 удалено
  1. 1 6
      tox.ini

+ 1 - 6
tox.ini

@@ -10,12 +10,7 @@ envlist = py3.13-{aws,azure,gcp,openstack,mock},lint
 
 [testenv]
 commands = # see pyproject.toml for coverage options; setup.cfg for flake8
-           # Azure integration tests race on the shared default vnet/subnet
-           # under xdist (get_or_create_default has no locking, so two workers
-           # creating the same named resource conflict on Azure ARM). Run the
-           # azure factor serially; other providers stay parallel.
-           !azure: coverage run --source=cloudbridge -m pytest -v {posargs:-n 5 tests/}
-           azure: coverage run --source=cloudbridge -m pytest -v {posargs:tests/}
+           coverage run --source=cloudbridge -m pytest -v {posargs:-n 5 tests/}
            # Combine parallel-mode data files and emit Cobertura XML for upload
            # by coverallsapp/github-action in CI. Locally this produces
            # coverage.xml in the project root, which IDEs can also consume.