X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/1fe2efd8573a63ffc76c69320720d349b21897da..4fc1354aeb6b217cd18dbdb2a0c41373fa9d8056:/tests/test_black.py diff --git a/tests/test_black.py b/tests/test_black.py index 9b2bfcd..b8e526a 100644 --- a/tests/test_black.py +++ b/tests/test_black.py @@ -460,11 +460,15 @@ class BlackTestCase(BlackBaseTestCase): ) self.assertEqual(expected, actual, msg) - @pytest.mark.without_python2 + @pytest.mark.no_python2 def test_python2_should_fail_without_optional_install(self) -> None: - # python 3.7 and below will install typed-ast and will be able to parse Python 2 if sys.version_info < (3, 8): - return + self.skipTest( + "Python 3.6 and 3.7 will install typed-ast to work and as such will be" + " able to parse Python 2 syntax without explicitly specifying the" + " python2 extra" + ) + source = "x = 1234l" tmp_file = Path(black.dump_to_file(source)) try: