Skip to content

Commit 5924ce9

Browse files
authored
Merge pull request #29 from underchemist/fix_cibuild
Fix cibuild
2 parents 3c072f3 + a084283 commit 5924ce9

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: CI Tests
22

33
on:
4+
pull_request:
45
push:
56
branches:
67
- '**'

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,6 @@ exclude="^(tests|testing)$"
3838
namespace_packages=true
3939
explicit_package_bases=true
4040
ignore_missing_imports=true
41-
ignore_errors=true
41+
ignore_errors=true
42+
install_types=true
43+
non_interactive=true

scripts/cibuild

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
set -e
44

5-
pip install flake8==3.9.2
5+
pip install flake8==3.9.2 mypy==0.910
66
cd $(dirname $0)/..
77
flake8 .
8-
mypy -p oaff
8+
mypy .
99
scripts/test --no-cache

0 commit comments

Comments
 (0)