diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml
index d77c3f8c5..b007cf1fd 100644
--- a/.github/workflows/Release.yml
+++ b/.github/workflows/Release.yml
@@ -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 }}
diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml
index 2c79296af..8a8c4b9e2 100644
--- a/.github/workflows/Test.yml
+++ b/.github/workflows/Test.yml
@@ -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
@@ -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
diff --git a/.gitignore b/.gitignore
index e7423b65d..ed3c5abb7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -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/**/*.*
diff --git a/.idea/pyVHDLModel.iml b/.idea/pyVHDLModel.iml
index 4085ce561..f8203ff07 100644
--- a/.idea/pyVHDLModel.iml
+++ b/.idea/pyVHDLModel.iml
@@ -7,7 +7,7 @@
-
+
diff --git a/tests/requirements.txt b/tests/requirements.txt
index e42ba7a98..b6817b869 100644
--- a/tests/requirements.txt
+++ b/tests/requirements.txt
@@ -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