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

tox: Add a -noextras factor (#9030)

... for running the tests with no optional deps.
tags/v1.26.0rc1
Richard van der Hoff 3 лет назад
committed by GitHub
Родитель
Сommit
1d5c021a45
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: 4AEE18F83AFDEB23
2 измененных файлов: 7 добавлений и 2 удалений
  1. +1
    -0
      changelog.d/9030.misc
  2. +6
    -2
      tox.ini

+ 1
- 0
changelog.d/9030.misc Просмотреть файл

@@ -0,0 +1 @@
Add a `-noextras` factor to `tox.ini`, to support running the tests with no optional dependencies.

+ 6
- 2
tox.ini Просмотреть файл

@@ -2,7 +2,6 @@
envlist = packaging, py35, py36, py37, py38, py39, check_codestyle, check_isort

[base]
extras = test
deps =
python-subunit
junitxml
@@ -25,10 +24,15 @@ deps =
# install the "enum34" dependency of cryptography.
pip>=10

# default settings for all tox environments
[testenv]
deps =
{[base]deps}
extras = all, test
extras =
# install the optional dependendencies for tox environments without
# '-noextras' in their name
!noextras: all
test

setenv =
# use a postgres db for tox environments with "-postgres" in the name


Загрузка…
Отмена
Сохранить