Skip to content

Commit

Permalink
Minor updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Jun 9, 2021
1 parent 0726aa5 commit b2accde
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ jobs:
env:
PYTHON: ${{ github.event.client_payload.PYTHON }}
steps:
- uses: actions/checkout@v2
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: ${{ github.event.client_payload.ref }}

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/Test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ jobs:
env:
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
Expand All @@ -38,7 +39,8 @@ jobs:
env:
PYTHON: 3.9
steps:
- uses: actions/checkout@v2
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup Python ${{ env.PYTHON }}
uses: actions/setup-python@v2
Expand Down
8 changes: 5 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@
__pycache__/
*.py[cod]

# Python installation packages
dist/

# Coverage.py
.coverage
.cov
coverage.xml

# setuptools
/build
/dist
/*.egg-info

# Sphinx
doc/_build/
doc/pyVHDLModel/**/*.*
Expand Down
2 changes: 1 addition & 1 deletion .idea/pyVHDLModel.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions tests/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
-r ../requirements.txt

# Coverage collection
Coverage>=5.3
Coverage>=5.5

# Test Runner
pytest>=6.2.1
pytest-cov>=2.10.1
pytest>=6.2.4
pytest-cov>=2.12.1

0 comments on commit b2accde

Please sign in to comment.