Skip to content

Commit b51c82f

Browse files
committed
Minor repository updates
* `.github/workflows/checks.yaml`: * Make `Checks` run for every branch and PR * Use glob in `hashFiles`, instead of hard-coded names * Use title-case naming for steps * Rename `.github/workflows/run-tests.yaml` to `.github/workflows/tests.yaml` and `Tests` as title * Add `-e file:.#egg=pylint-pytest` to `requirements/dev.in` * It seems that #33 / a410e15 does not pick up `pylint`; resulting it being purged from the venv - and the tests failing subsequently (see https://github.com/pylint-dev/pylint-pytest/actions/runs/7298965817/job/19891092695?pr=33#step:6:30) * Remove the stale `pyproject.toml` + `pip install --no-deps -e .` references from `Makefile` Signed-off-by: Stavros Ntentos <[email protected]>
1 parent 1ca1d86 commit b51c82f

File tree

4 files changed

+9
-13
lines changed

4 files changed

+9
-13
lines changed

.github/workflows/checks.yaml

+2-8
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@ name: Checks
33

44
on:
55
push:
6-
branches:
7-
- master
86
pull_request:
9-
branches:
10-
- master
117

128
env:
139
CACHE_VERSION: 1
@@ -43,9 +39,7 @@ jobs:
4339
id: generate-python-key
4440
run: >-
4541
echo "key=${{ env.KEY_PREFIX }}-${{ env.CACHE_VERSION }}-${{
46-
hashFiles('pyproject.toml', 'requirements_test.txt',
47-
'requirements_test_min.txt', 'requirements_test_pre_commit.txt') }}" >>
48-
$GITHUB_OUTPUT
42+
hashFiles('pyproject.toml', 'requirements/**.txt') }}" >> $GITHUB_OUTPUT
4943
- name: Restore Python virtual environment
5044
id: cache-venv
5145
uses: actions/[email protected]
@@ -66,7 +60,7 @@ jobs:
6660
path: ${{ env.PRE_COMMIT_CACHE }}
6761
key: >-
6862
${{ runner.os }}-${{ steps.generate-pre-commit-key.outputs.key }}
69-
- name: install dependencies
63+
- name: Install Dependencies
7064
if: steps.cache-venv.outputs.cache-hit != 'true'
7165
run: make install
7266

.github/workflows/run-tests.yaml .github/workflows/tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Testing
2+
name: Tests
33

44
on:
55
push:

Makefile

+2-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ requirements/dev.txt: .venv requirements/dev.in pyproject.toml
1616
--quiet --generate-hashes --max-rounds=20 --strip-extras \
1717
--resolver=backtracking \
1818
--output-file requirements/dev.txt \
19-
requirements/dev.in pyproject.toml
19+
requirements/dev.in
2020

2121
# upgrades the dependencies to their latest/matching version
2222
.PHONY: upgrade
@@ -26,14 +26,12 @@ upgrade: .venv
2626
--upgrade \
2727
--resolver=backtracking \
2828
--output-file requirements/dev.txt \
29-
requirements/dev.in pyproject.toml
29+
requirements/dev.in
3030

3131

3232
# creates the venv if not present then install the dependencies, the package and pre-commit
3333
.PHONY: install
3434
install: .venv
3535
pip-sync requirements/dev.txt
36-
# install pylint_pytest (deps are already handled by the line before)
37-
pip install --no-deps -e .
3836
# install pre-commit hooks
3937
pre-commit install

requirements/dev.in

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Install pylint-pytest and its dependencies.
2+
# tl;dr: Install pylint
3+
-e file:.#egg=pylint-pytest
4+
15
# to handle dependencies
26
pip-tools
37
wheel

0 commit comments

Comments
 (0)