Skip to content

Commit

Permalink
make test more configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Maik Jablonka committed Dec 19, 2022
1 parent b01951f commit d641dbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_zeopp.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import shutil
import subprocess
from pathlib import Path
import os
import os
import pytest
from parsers import (
AVolumeParser,
Expand All @@ -12,7 +12,7 @@
)

_CWD = Path(__file__).parent
_NETWORK_BINARY = os.path.join(_CWD, "../zeo++/network")
_NETWORK_BINARY = os.environ.get("ZEOPP_BINARY", os.path.join(_CWD, "../zeo++/network"))


def test_xyz(tmpdir):
Expand Down

0 comments on commit d641dbf

Please sign in to comment.