Skip to content

Commit

Permalink
Set CI test to run in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
enekomartinmartinez committed Nov 3, 2022
1 parent c592ede commit 66ae7a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
pip install -r tests/requirements.txt
pip install -e .
- name: Test and coverage
run: pytest tests/ --cov=pysd
run: pytest tests/ --cov=pysd -n 2
- name: Coveralls
if: ${{ matrix.python-version == 3.7 && matrix.os == 'ubuntu-latest' }}
env:
Expand Down
1 change: 1 addition & 0 deletions docs/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ Internal Changes
- Add `dependabot <https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot>`_ configuration for GitHub Actions updates. (`@EwoutH <https://github.com/EwoutH>`_)
- Include new error messages for initialization of :py:class:`pysd.py_backend.lookups.HardcodedLookups` (:issue:`376`). (`@enekomartinmartinez <https://github.com/enekomartinmartinez>`_)
- Include new warning message when a translated variable has several types or subtypes. (`@enekomartinmartinez <https://github.com/enekomartinmartinez>`_)
- Set CI test to run in parallel in 2 cores. (`@enekomartinmartinez <https://github.com/enekomartinmartinez>`_)

v3.7.1 (2022/09/19)
-------------------
Expand Down
1 change: 1 addition & 0 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
pytest
pytest-cov
pytest-mock
pytest-xdist
coverage
coveralls
psutil
Expand Down

0 comments on commit 66ae7a3

Please sign in to comment.