Skip to content

Commit

Permalink
Workaround for the pytest-xdist warning
Browse files Browse the repository at this point in the history
  • Loading branch information
skirpichev committed Oct 31, 2022
1 parent 17ba9b7 commit 4bb2911
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Expand Up @@ -45,7 +45,7 @@ docs = ['sphinx>=4', 'sphinxcontrib-bibtex>=2.1', 'sphinxcontrib-autoprogram',
tests = ['pytest>=6', 'hypothesis', 'pytest-timeout', 'pexpect']
develop = ['diofant[tests]', 'flake8>=3.8,<5', 'flake8-docstrings>=1.3',
'pep8-naming', 'flake8-comprehensions', 'flake8-isort>=4.1',
'flake8-rst', 'flake8-quotes>=3', 'flake8-sfs', 'pytest-xdist>=1.22',
'flake8-rst', 'flake8-quotes>=3', 'flake8-sfs', 'pytest-xdist>=1.22,<3.0.2',
'pytest-cov', 'pylint>=2.14.2', 'coverage[toml]>=6.1.2',
'coverage_enable_subprocess', 'types-pkg_resources',
'mypy', 'build', 'flake8-pytest-style']
Expand Down Expand Up @@ -136,7 +136,8 @@ norecursedirs = ['build', '.eggs', '.git']
timeout = 1000
xfail_strict = true
filterwarnings = ['ignore::UserWarning',
'error::DeprecationWarning']
'error::DeprecationWarning',
'ignore:The --rsyncdir command line argument and rsyncdirs config variable are deprecated.:DeprecationWarning']
[tool.coverage.run]
branch = true
omit = ['conftest.py',
Expand Down

0 comments on commit 4bb2911

Please sign in to comment.