Skip to content

Commit

Permalink
Skip coverage (#446)
Browse files Browse the repository at this point in the history
* Skip coverage in CI

* Update whats new
  • Loading branch information
enekomartinmartinez authored Jun 27, 2024
1 parent 10d5972 commit 6b321a2
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,15 @@ jobs:
pip install -U wheel
pip install --prefer-binary -r tests/requirements.txt
pip install --prefer-binary -e .
- name: Test
run: |
pytest tests/ -n 2
if: ${{ matrix.python-version != 3.9 || matrix.os != 'ubuntu-latest' }}
- name: Test and coverage
run: |
pytest tests/ --cov=pysd -n 2
coverage xml
if: ${{ matrix.python-version == 3.9 && matrix.os == 'ubuntu-latest' }}
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
Expand Down
29 changes: 28 additions & 1 deletion docs/whats_new.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
What's New
==========
v3.14.1 (2024/06/XX)
--------------------
New Features
~~~~~~~~~~~~

Breaking changes
~~~~~~~~~~~~~~~~

Deprecations
~~~~~~~~~~~~

Bug fixes
~~~~~~~~~
- Support for :py:mod:`numpy` 2. (`@enekomartinmartinez <https://github.com/enekomartinmartinez>`_)
- Allow multiple font styles in var names (:issue:`443`). (`@rogersamso <https://github.com/rogersamso>`_)

Documentation
~~~~~~~~~~~~~

Performance
~~~~~~~~~~~

Internal Changes
~~~~~~~~~~~~~~~~
- Fix CI tests. (`@rogersamso <https://github.com/rogersamso>`_)
- Run CI coverage only on ubuntu and lowest Python. (`@enekomartinmartinez <https://github.com/enekomartinmartinez>`_)

v3.14.0 (2024/04/24)
--------------------
New Features
Expand Down Expand Up @@ -267,7 +294,7 @@ v3.9.1 (2023/03/11)

New Features
~~~~~~~~~~~~
- Add :py:const:`numpy.py` as translation for the call to the function `PI()`. (`@lionel42 <https://github.com/lionel42>`_)
- Add :py:const:`numpy.pi` as translation for the call to the function `PI()`. (`@lionel42 <https://github.com/lionel42>`_)

Breaking changes
~~~~~~~~~~~~~~~~
Expand Down

0 comments on commit 6b321a2

Please sign in to comment.