diff options
author | bashonly <bashonly@bashonly.com> | 2023-10-13 18:02:06 -0500 |
---|---|---|
committer | bashonly <bashonly@bashonly.com> | 2023-10-13 18:02:06 -0500 |
commit | 700444c23ddb65f618c2abd942acdc0c58c650b1 (patch) | |
tree | ecad08af2dfd621e85fb3a76ef47935803f663a4 | |
parent | b73c4093187cffddcb6fbc4bfbdc0fea244ff1e9 (diff) |
[ci] Run core tests with dependencies
Authored by: bashonly, coletdjnz
-rw-r--r-- | .github/workflows/core.yml | 2 | ||||
-rw-r--r-- | devscripts/make_changelog.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml index 7fcf11dfa..7acaee1e8 100644 --- a/.github/workflows/core.yml +++ b/.github/workflows/core.yml @@ -33,7 +33,7 @@ jobs: with: python-version: ${{ matrix.python-version }} - name: Install pytest - run: pip install pytest + run: pip install pytest -r requirements.txt - name: Run tests continue-on-error: False run: | diff --git a/devscripts/make_changelog.py b/devscripts/make_changelog.py index 9ff65db14..d0e893e58 100644 --- a/devscripts/make_changelog.py +++ b/devscripts/make_changelog.py @@ -56,6 +56,7 @@ class CommitGroup(enum.Enum): }, cls.MISC: { 'build', + 'ci', 'cleanup', 'devscripts', 'docs', |