Skip to content

Commit c8794b2

Browse files
committed
test on Windows and macOS, too
- test 3.8 on Windows and macOS - colorful tests - setup.py: add long description type explicitly to make twine happy
1 parent 3f7a17c commit c8794b2

2 files changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/gh-ci.yaml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,13 @@ jobs:
2626
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
2727
include:
2828
- os: windows-latest
29-
python-version: 3.7
29+
python-version: 2.7
30+
- os: windows-latest
31+
python-version: 3.9
32+
- os: macos-latest
33+
python-version: 2.7
34+
- os: macos-latest
35+
python-version: 3.9
3036

3137
steps:
3238
- uses: actions/checkout@v2
@@ -58,7 +64,7 @@ jobs:
5864
5965
- name: run unit tests
6066
run: |
61-
pytest -v --cov=gridData --cov-report=xml ./gridData/tests
67+
pytest -v --cov=gridData --cov-report=xml --color=yes ./gridData/tests
6268
6369
- name: codecov
6470
uses: codecov/codecov-action@v2

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
cmdclass=versioneer.get_cmdclass(),
1515
description="Reading and writing of data on regular grids in Python",
1616
long_description=long_description,
17+
long_description_content_type="text/x-rst",
1718
author="Oliver Beckstein",
1819
author_email="orbeckst@gmail.com",
1920
license="LGPLv3",

0 commit comments

Comments
 (0)