From fcb1fefa237536ec1156b5620f97dcdc3182eda9 Mon Sep 17 00:00:00 2001 From: Benedek Racz Date: Sun, 5 Apr 2020 13:30:31 +0200 Subject: [PATCH] [TEST] add SpawnSocket tests to tox. --- tox.ini | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index eb73a72..c04c3cd 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ [tox] # The following configuration will run automatically. -envlist = py{37}-{legacy_wexpect,spawn_pipe},installed,pyinstaller +envlist = py{37}-{legacy_wexpect,spawn_pipe,spawn_socket},installed,pyinstaller [testenv] @@ -13,6 +13,7 @@ description = Unit tests setenv = spawn_pipe: WEXPECT_SPAWN_CLASS=SpawnPipe legacy_wexpect: WEXPECT_SPAWN_CLASS=legacy_wexpect + spawn_socket: WEXPECT_SPAWN_CLASS=SpawnSocket commands = # install the dependencies: @@ -46,6 +47,7 @@ commands = # copy all testcase into working dir cp -r ../tests tests + # Run the test itself. Running all tests is not needed, because it just test the installation, # not functions. python -m unittest tests.test_misc