Skip to content

Commit 17234da

Browse files
authored
Merge pull request #49 from wobcom/fix/build-acceleration
fix: Remove mypy from build elements for non-development
2 parents 29e9d4c + d572c65 commit 17234da

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,7 @@ machines/**
1111
.coverage
1212
.dmypy.json
1313
*~
14+
15+
.vscode
16+
.env
17+
.code

flake.nix

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
# The application
1818
cosmo = prev.poetry2nix.mkPoetryApplication {
1919
projectDir = ./.;
20+
21+
# This disables the build of mypy, which just takes too long.
22+
check = false;
23+
checkGroups = [];
2024
};
2125
})
2226
];

0 commit comments

Comments
 (0)