From b2accde8bdd6aff02461c349f628a29465dff540 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Wed, 9 Jun 2021 18:24:31 +0200 Subject: [PATCH] Minor updates. --- .github/workflows/Release.yml | 3 ++- .github/workflows/Test.yml | 6 ++++-- .gitignore | 8 +++++--- .idea/pyVHDLModel.iml | 2 +- tests/requirements.txt | 6 +++--- 5 files changed, 15 insertions(+), 10 deletions(-) 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