Skip to content

Commit fe2dc61

Browse files
committed
typechecks are running with make check (fast enough)
1 parent 6938240 commit fe2dc61

File tree

3 files changed

+2
-33
lines changed

3 files changed

+2
-33
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@
1717
uses: "./.github/workflows/lint.yml"
1818
variants:
1919
uses: "./.github/workflows/variants.yml"
20-
typecheck:
21-
uses: "./.github/workflows/typecheck.yml"
2220

2321
# Always build & lint package.
2422
build-package:
@@ -27,7 +25,6 @@
2725
- lint
2826
- tests
2927
- variants
30-
- typecheck
3128
runs-on: ubuntu-latest
3229
permissions:
3330
attestations: write

.github/workflows/typecheck.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

src/mxmake/tests/test_topics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def test_CircularDependencyDomainError(self):
188188
str(err),
189189
(
190190
"Domains define circular dependencies: [_TestDomain("
191-
"topic='t1', name='f1', file='f1.mk', depends_=['f2'], soft_depends_=[])]"
191+
"topic='t1', name='f1', file=PosixPath('f1.mk'), depends_=['f2'], soft_depends_=[])]"
192192
),
193193
)
194194

@@ -199,7 +199,7 @@ def test_MissingDependencyDomainError(self):
199199
str(err),
200200
(
201201
"Domain define missing dependency: _TestDomain("
202-
"topic='t', name='t', file='t.mk', depends_=['missing'], soft_depends_=[])"
202+
"topic='t', name='t', file=PosixPath('t.mk'), depends_=['missing'], soft_depends_=[])"
203203
),
204204
)
205205

0 commit comments

Comments
 (0)