diff options
| author | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-19 18:23:00 +0200 | 
|---|---|---|
| committer | gabrielgio <gabriel.giovanini@pm.me> | 2021-07-19 18:23:00 +0200 | 
| commit | f2d3c97206828ed4c569f4391bba7f1c16b68a6d (patch) | |
| tree | 5684b627c73807af84f0966a277359815b3111aa | |
| parent | e40e995e0ea62c8d803074759e35cb9ccd009c12 (diff) | |
| download | reddit-nextcloud-importer-f2d3c97206828ed4c569f4391bba7f1c16b68a6d.tar.gz reddit-nextcloud-importer-f2d3c97206828ed4c569f4391bba7f1c16b68a6d.tar.bz2 reddit-nextcloud-importer-f2d3c97206828ed4c569f4391bba7f1c16b68a6d.zip | |
fix: Use the current CPU core count availabile
| -rw-r--r-- | .gitlab-ci.yml | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 363e06c..6804ef8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,7 +38,7 @@ test:    stage: test    script:      - pip install -r dev-requirements.txt -    - pytest -n 4 --junitxml=report.xml --cov=importer +    - pytest -n $(nproc) --junitxml=report.xml --cov=importer    artifacts:      reports:        junit: report.xml | 
