1 parent ed9353e commit 62dc90eCopy full SHA for 62dc90e
2 files changed
.github/workflows/run_test.yml
@@ -47,11 +47,7 @@ jobs:
47
architecture: ${{ matrix.architecture }}
48
49
- name: Install Python requirements
50
- run: pip install --upgrade --upgrade-strategy eager .
51
-
52
- - name: Install pytest
53
- run: |
54
- pip install pytest
+ run: pip install --upgrade --upgrade-strategy eager .[dev]
55
56
- name: Run tests
57
run: |
pyproject.toml
@@ -33,6 +33,12 @@ dynamic = ["version"]
33
Source = "https://github.com/moi15moi/FindSystemFontsFilename/"
34
Tracker = "https://github.com/moi15moi/FindSystemFontsFilename/issues/"
35
36
+[project.optional-dependencies]
37
+dev = [
38
+ "mypy>=1.0.0",
39
+ "pytest>=8.0.0",
40
+]
41
+
42
[build-system]
43
requires = ["setuptools"]
44
build-backend = "setuptools.build_meta"
0 commit comments