Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip coverage #446

Merged
merged 4 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading