run tests in parallel
authorJacob Lifshay <programmerjake@gmail.com>
Fri, 3 Apr 2020 07:07:25 +0000 (00:07 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Fri, 3 Apr 2020 07:07:25 +0000 (00:07 -0700)
.gitlab-ci.yml

index 3b60a8d0e512705b207d2ec4a132089000c922f7..a176ba34cf9b53c97dd5d6a73729e27d82256ad5 100644 (file)
@@ -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