We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5dfef6 commit f0ff8dbCopy full SHA for f0ff8db
2 files changed
.github/workflows/test.yml
@@ -20,4 +20,9 @@ jobs:
20
- run: python -m pip install --upgrade pip build pytest
21
- run: python -m build .
22
- run: python -m pip install .
23
- - run: pytest test/
+ - run: |
24
+ echo "import matplotlib" > set_backend.py
25
+ echo "matplotlib.use('Agg')" >> set_backend.py
26
+ echo "import pytest" >> set_backend.py
27
+ echo "pytest.main(['test/'])" >> set_backend.py
28
+ python set_backend.py
pyproject.toml
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
7
8
[project]
9
name = "spotpython"
10
-version = "0.15.3"
+version = "0.15.4"
11
authors = [
12
{ name="T. Bartz-Beielstein", email="tbb@bartzundbartz.de" }
13
]
0 commit comments