diff options
-rw-r--r-- | doc/requirements.pip | 4 | ||||
-rw-r--r-- | requirements/dev.pip | 10 | ||||
-rw-r--r-- | requirements/kit.pip | 4 | ||||
-rw-r--r-- | requirements/light-threads.pip | 2 | ||||
-rw-r--r-- | requirements/pip-tools.pip | 2 | ||||
-rw-r--r-- | requirements/pytest.pip | 2 | ||||
-rw-r--r-- | tests/test_data.py | 2 | ||||
-rw-r--r-- | tests/test_oddball.py | 2 | ||||
-rw-r--r-- | tests/test_report.py | 4 |
9 files changed, 16 insertions, 16 deletions
diff --git a/doc/requirements.pip b/doc/requirements.pip index e6fe8b42..30b111db 100644 --- a/doc/requirements.pip +++ b/doc/requirements.pip @@ -61,7 +61,7 @@ six==1.16.0 # via livereload snowballstemmer==2.2.0 # via sphinx -sphinx==4.3.0 +sphinx==4.3.1 # via # -r doc/requirements.in # sphinx-autobuild @@ -99,5 +99,5 @@ urllib3==1.26.7 # via requests # The following packages are considered to be unsafe in a requirements file: -setuptools==59.2.0 +setuptools==59.4.0 # via sphinx diff --git a/requirements/dev.pip b/requirements/dev.pip index fd34e61a..4644ddf9 100644 --- a/requirements/dev.pip +++ b/requirements/dev.pip @@ -4,7 +4,7 @@ # # make upgrade # -astroid==2.8.6 +astroid==2.9.0 # via pylint attrs==21.2.0 # via @@ -62,7 +62,7 @@ future==0.18.2 # pycontracts greenlet==1.1.2 # via -r requirements/dev.in -hypothesis==6.27.1 +hypothesis==6.29.0 # via -r requirements/pytest.pip idna==3.3 # via requests @@ -78,7 +78,7 @@ isort==5.10.1 # via pylint jedi==0.18.1 # via pudb -keyring==23.2.1 +keyring==23.4.0 # via twine lazy-object-proxy==1.6.0 # via astroid @@ -123,7 +123,7 @@ pygments==2.10.0 # via # pudb # readme-renderer -pylint==2.11.1 +pylint==2.12.1 # via -r requirements/dev.in pyparsing==3.0.6 # via @@ -214,7 +214,7 @@ zipp==3.6.0 # The following packages are considered to be unsafe in a requirements file: pip==21.3.1 # via -r requirements/pip.pip -setuptools==59.2.0 +setuptools==59.4.0 # via # astroid # check-manifest diff --git a/requirements/kit.pip b/requirements/kit.pip index 24eb772e..48e14820 100644 --- a/requirements/kit.pip +++ b/requirements/kit.pip @@ -14,7 +14,7 @@ build==0.7.0 # via -r requirements/kit.in certifi==2021.10.8 # via cibuildwheel -cibuildwheel==2.2.2 +cibuildwheel==2.3.0 # via -r requirements/kit.in packaging==21.3 # via @@ -35,5 +35,5 @@ wheel==0.37.0 # via -r requirements/kit.in # The following packages are considered to be unsafe in a requirements file: -setuptools==59.2.0 +setuptools==59.4.0 # via -r requirements/kit.in diff --git a/requirements/light-threads.pip b/requirements/light-threads.pip index de8132c4..a83af94f 100644 --- a/requirements/light-threads.pip +++ b/requirements/light-threads.pip @@ -23,5 +23,5 @@ zope.interface==5.4.0 # via gevent # The following packages are considered to be unsafe in a requirements file: -setuptools==59.2.0 +setuptools==59.4.0 # via gevent diff --git a/requirements/pip-tools.pip b/requirements/pip-tools.pip index 93f04661..7bd41407 100644 --- a/requirements/pip-tools.pip +++ b/requirements/pip-tools.pip @@ -18,5 +18,5 @@ wheel==0.37.0 # The following packages are considered to be unsafe in a requirements file: pip==21.3.1 # via pip-tools -setuptools==59.2.0 +setuptools==59.4.0 # via pip-tools diff --git a/requirements/pytest.pip b/requirements/pytest.pip index 922d44c7..a87d5858 100644 --- a/requirements/pytest.pip +++ b/requirements/pytest.pip @@ -18,7 +18,7 @@ flaky==3.7.0 # via -r requirements/pytest.in future==0.18.2 # via pycontracts -hypothesis==6.27.1 +hypothesis==6.29.0 # via -r requirements/pytest.in iniconfig==1.1.1 # via pytest diff --git a/tests/test_data.py b/tests/test_data.py index bc06eb23..527ac932 100644 --- a/tests/test_data.py +++ b/tests/test_data.py @@ -559,7 +559,7 @@ class CoverageDataTest(CoverageTest): t.join() assert_lines1_data(covdata) - assert exceptions == [] + assert not exceptions class CoverageDataInTempDirTest(CoverageTest): diff --git a/tests/test_oddball.py b/tests/test_oddball.py index 2eb0fc1d..2d0ae7f1 100644 --- a/tests/test_oddball.py +++ b/tests/test_oddball.py @@ -134,7 +134,7 @@ class RecursionTest(CoverageTest): if pytrace: # pragma: no metacov assert cov._warnings == ["Trace function changed, measurement is likely wrong: None"] else: - assert cov._warnings == [] + assert not cov._warnings class MemoryLeakTest(CoverageTest): diff --git a/tests/test_report.py b/tests/test_report.py index 7d6f55af..1e7c0762 100644 --- a/tests/test_report.py +++ b/tests/test_report.py @@ -37,7 +37,7 @@ class RenderReportTest(CoverageTest): render_report("-", fake, [pytest, "coverage"], msgs.append) assert fake.morfs == [pytest, "coverage"] assert self.stdout() == "Hello!\n" - assert msgs == [] + assert not msgs def test_file(self): fake = FakeReporter(output="Gréètings!\n") @@ -55,4 +55,4 @@ class RenderReportTest(CoverageTest): render_report("output.txt", fake, [], msgs.append) assert self.stdout() == "" self.assert_doesnt_exist("output.txt") - assert msgs == [] + assert not msgs |