Skip to content

Commit b2accde

Browse files
committed
Minor updates.
1 parent 0726aa5 commit b2accde

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

.github/workflows/Release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ jobs:
1111
env:
1212
PYTHON: ${{ github.event.client_payload.PYTHON }}
1313
steps:
14-
- uses: actions/checkout@v2
14+
- name: Checkout repository
15+
uses: actions/checkout@v2
1516
with:
1617
ref: ${{ github.event.client_payload.ref }}
1718

.github/workflows/Test.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ jobs:
1515
env:
1616
PYTHON: ${{ matrix.python-version }}
1717
steps:
18-
- uses: actions/checkout@v2
18+
- name: Checkout repository
19+
uses: actions/checkout@v2
1920

2021
- name: Setup Python ${{ matrix.python-version }}
2122
uses: actions/setup-python@v2
@@ -38,7 +39,8 @@ jobs:
3839
env:
3940
PYTHON: 3.9
4041
steps:
41-
- uses: actions/checkout@v2
42+
- name: Checkout repository
43+
uses: actions/checkout@v2
4244

4345
- name: Setup Python ${{ env.PYTHON }}
4446
uses: actions/setup-python@v2

.gitignore

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,16 @@
22
__pycache__/
33
*.py[cod]
44

5-
# Python installation packages
6-
dist/
7-
85
# Coverage.py
96
.coverage
107
.cov
118
coverage.xml
129

10+
# setuptools
11+
/build
12+
/dist
13+
/*.egg-info
14+
1315
# Sphinx
1416
doc/_build/
1517
doc/pyVHDLModel/**/*.*

.idea/pyVHDLModel.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
-r ../requirements.txt
22

33
# Coverage collection
4-
Coverage>=5.3
4+
Coverage>=5.5
55

66
# Test Runner
7-
pytest>=6.2.1
8-
pytest-cov>=2.10.1
7+
pytest>=6.2.4
8+
pytest-cov>=2.12.1

0 commit comments

Comments
 (0)