Skip to content

Commit a7dc982

Browse files
committed
Add setup.py develop to test
1 parent a35592b commit a7dc982

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/cpp/run_install.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ def http_server():
6565
if len(sys.argv) == 2 and sys.argv[1] == "wheel":
6666
cmd_args = [sys.executable, "-m", "build", "--wheel", "--no-isolation"]
6767
cwd = root
68+
elif len(sys.argv) == 2 and sys.argv[1] == "develop":
69+
cmd_args = [sys.executable, "setup.py", "develop", "-N"]
70+
cwd = root
6871
else:
6972
# run pip install
7073
cmd_args = [

0 commit comments

Comments
 (0)