Skip to content

Commit

Permalink
Test vs PY36 instead of PY35
Browse files Browse the repository at this point in the history
  • Loading branch information
Borja Lorente committed Mar 19, 2019
1 parent 2d9cc29 commit e1d90fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ def test_interpreter_constraints_honored_without_ppp_or_pp():
])
)
res = run_pex_command(['--disable-cache',
'--interpreter-constraint===%s' % PY35,
'--interpreter-constraint===%s' % PY36,
'-o', pex_out_path],
env=env
)
Expand All @@ -448,7 +448,7 @@ def test_interpreter_constraints_honored_without_ppp_or_pp():

# If the constraints are honored, it will have run python3.5 and not python3.6
if sys.version_info[0] == 3:
assert ("Python %s" % PY35) in str(stdout).split("\n")[0]
assert ("Python %s" % PY36) in str(stdout).split("\n")[0]


@pytest.mark.skipif(NOT_CPYTHON36)
Expand Down

0 comments on commit e1d90fb

Please sign in to comment.