Skip network interfaces on Travis

This commit is contained in:
Julien Duponchelle 2015-05-27 16:45:39 +02:00
parent 7cad25eb1a
commit 8abf22ef24

View File

@ -26,7 +26,7 @@ def test_udp_allocation(server, project):
# Netfifaces is not available on Travis
@pytest.mark.skipif(os.environ.get("TRAVIS", False), reason="Not supported on Travis")
@pytest.mark.skipif(os.environ.get("TRAVIS", False) is not False, reason="Not supported on Travis")
def test_interfaces(server):
response = server.get('/interfaces', example=True)
assert response.status == 200