Skip to content

Commit

Permalink
more explicit blacklist for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mcocdawc committed Dec 10, 2024
1 parent 604f8a2 commit 2c5bcc1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@
disallow_untyped_defs = False
check_untyped_defs = False

# blacklist tests
[mypy-tests.chem_dm_kBE_test,tests.chempot_molBE_test,tests.dm_molBE_test,tests.dmrg_molBE_test,tests.eri_onthefly_test,tests.hf-in-hf_BE_test,tests.kbe_polyacetylene_test,tests.molbe_h8_test,tests.molbe_io_fcidump_test,tests.molbe_octane_get_rdms_test,tests.molbe_octane_test,tests.molbe_oneshot_rbe_hcore_test,tests.molbe_oneshot_rbe_qmmm-fromchk_test,tests.ube-oneshot_test]
disallow_untyped_defs = False
check_untyped_defs = False

[mypy-tests.*,example.*]
[mypy-example.*]
disallow_untyped_defs = False
check_untyped_defs = False

Expand Down

0 comments on commit 2c5bcc1

Please sign in to comment.