Skip to content

Commit 8eca594

Browse files
committed
Disabled multiprocessing in nosetests. This fixes pysmt#633
1 parent af29fe1 commit 8eca594

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

run_all_tests.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
# limitations under the License.
1818
#
1919

20-
export NOSE_PROCESSES=4
21-
export NOSE_PROCESS_TIMEOUT=360
20+
#export NOSE_PROCESSES=-1
21+
#export NOSE_PROCESS_TIMEOUT=360
2222
export PYTHONDONTWRITEBYTECODE=True
2323

2424
# Exit on error (-x)
2525
# Rule of thumb: if a test takes more than 10 seconds it
2626
# should be marked as slow using:
2727
# @attr("slow")
28-
nosetests -v -x
28+
python3 -m nose -v -x pysmt/test

run_tests.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
# limitations under the License.
1818
#
1919

20-
export NOSE_PROCESSES=4
21-
export NOSE_PROCESS_TIMEOUT=240
20+
#export NOSE_PROCESSES=-1
21+
#export NOSE_PROCESS_TIMEOUT=240
2222
export PYTHONDONTWRITEBYTECODE=True
2323

2424
# Skip slow tests (-A "not slow")
2525
# Exit on error (-x)
2626
# Rule of thumb: if a test takes more than 10 seconds it
2727
# should be marked as slow using:
2828
# @attr("slow")
29-
nosetests -v -A "not slow" -x pysmt/test
29+
python3 -m nose -v -A "not slow" -x pysmt/test

0 commit comments

Comments
 (0)