Skip to content

Commit fa43468

Browse files
committed
Changed naming a bit and fixed test requirements
1 parent 2d3f379 commit fa43468

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
name: Publish Python distribution package to PyPI and TestPyPI
2+
name: PyPI - Build and publish
33
on: push
44
jobs:
55
build-n-publish:
6-
name: Build and publish Python distributions to PyPI and TestPyPI
6+
name: PyPI - Build and publish
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@master

.github/workflows/pytest.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
name: Test with pytest
2+
name: Tests
33
on: push
44
jobs:
55
pytest:
6-
name: Test with pytest
6+
name: Tests
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@master
@@ -13,6 +13,8 @@ jobs:
1313
python-version: 3.9
1414
- name: Install requirements
1515
run: pip install -r requirements.txt
16+
- name: Install test requirements
17+
run: pip install -r test-requirements.txt
1618
- name: Install pytest
1719
run: pip install pytest
1820
- name: Run tests

0 commit comments

Comments
 (0)