Skip to content

Commit

Permalink
Remove unnecessary pytest mark
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Mar 16, 2019
1 parent 1fb3493 commit 98e3d57
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/test_core.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# -*- coding: utf-8 -*-
import itertools
import mock
import sys
import datetime

import pytest
Expand Down Expand Up @@ -740,12 +739,6 @@ def viewfunc(email, password):

assert viewfunc() == {"email": "foo@bar.com", "password": "bar"}

# Must skip on older versions of python due to
# https://github.com/pytest-dev/pytest/issues/840
@pytest.mark.skipif(
sys.version_info < (3, 4),
reason="Skipping due to a bug in pytest's warning recording",
)
@pytest.mark.skipif(
MARSHMALLOW_VERSION_INFO[0] >= 3,
reason='"strict" parameter is removed in marshmallow 3',
Expand Down

0 comments on commit 98e3d57

Please sign in to comment.