Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
where they are not used.
- #326: Fix OSError 'Not a directory' when creating env on Jython 2.7.0.
Thanks Nick Douma (@LordGaav).
- #585: Add documentation for constraints.txt

2.7.0
-----
Expand Down
10 changes: 4 additions & 6 deletions tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -1108,8 +1108,7 @@ def test_substitution_notfound_issue515(tmpdir, newconfig):
['python', '-c', 'print("Hello, world!")'],
]

@pytest.mark.xfail(raises=AssertionError, reason="issue #301")
def test_substitution_nested_env_defaults_issue301(tmpdir, newconfig, monkeypatch):
def test_substitution_nested_env_defaults(tmpdir, newconfig, monkeypatch):
monkeypatch.setenv("IGNORE_STATIC_DEFAULT", "env")
monkeypatch.setenv("IGNORE_DYNAMIC_DEFAULT", "env")
config = newconfig("""
Expand Down Expand Up @@ -1684,9 +1683,6 @@ def test_passing_empty_string(self, tmpdir, newconfig):
args = ['--hashseed', '']
self._check_testenv(newconfig, '', args=args)

@pytest.mark.xfail(sys.version_info >= (3, 2),
reason="at least Debian python 3.2/3.3 have a bug: "
"http://bugs.python.org/issue11884")
def test_passing_no_argument(self, tmpdir, newconfig):
"""Test that passing no arguments to --hashseed is not allowed."""
args = ['--hashseed']
Expand Down Expand Up @@ -2190,7 +2186,9 @@ def test_showconfig_with_force_dep_version(self, cmd, initproj):
r'*deps*dep1, dep2==5.0*',
])

@pytest.mark.xfail(reason='Upstream bug. See #203')
@pytest.mark.xfail(
"'pypy' not in sys.executable",
reason='Upstream bug. See #203')
def test_colon_symbol_in_directory_name(self, cmd, initproj):
initproj('colon:_symbol_in_dir_name', filedefs={
'tox.ini': '''
Expand Down
2 changes: 0 additions & 2 deletions tests/test_z_cmdline.py
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,6 @@ def test_installpkg(tmpdir, newconfig):
assert sdist_path == p


@pytest.mark.xfail("sys.platform == 'win32'", reason="test needs better impl")
def test_envsitepackagesdir(cmd, initproj):
initproj("pkg512-0.0.5", filedefs={
'tox.ini': """
Expand All @@ -797,7 +796,6 @@ def test_envsitepackagesdir(cmd, initproj):
""")


@pytest.mark.xfail("sys.platform == 'win32'", reason="test needs better impl")
def test_envsitepackagesdir_skip_missing_issue280(cmd, initproj):
initproj("pkg513-0.0.5", filedefs={
'tox.ini': """
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,4 @@ pep8maxlinelength = 99
# E731 - do not assign a lambda expression, use a def
pep8ignore = *.py W503 E402 E731
flakes-ignore = ImportStarUsage
xfail_strict = True