From 77f150cff440bed025e2487b6f0fcda9f529290b Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Fri, 3 Apr 2020 00:07:25 -0700 Subject: [PATCH] run tests in parallel --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3b60a8d0..a176ba34 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,6 +25,7 @@ build: script: - python3 -m venv .env - . .env/bin/activate + - pip install nose - IEEE754FPU_PATH="$(pwd)" - git clone --depth 1 --recursive https://github.com/billzorn/sfpy.git sfpy @@ -62,5 +63,4 @@ build: - popd - python setup.py develop - - - python setup.py test + - nosetests -v --processes=-1 -- 2.30.2