some notes on rethinking mixning in the user config
This commit is contained in:
parent
5ec357915b
commit
675bb66e52
7 changed files with 211 additions and 6 deletions
12
doc/experiments_with_config/run
Executable file
12
doc/experiments_with_config/run
Executable file
|
@ -0,0 +1,12 @@
|
|||
#!/bin/bash
|
||||
set -eu
|
||||
cd "$(dirname "0")"
|
||||
|
||||
WHAT="$1"
|
||||
|
||||
export PYTHONPATH=src
|
||||
|
||||
ERROR=0
|
||||
python3 -m mypy -p "pkg.$WHAT" || ERROR=1
|
||||
python3 -c "import pkg.$WHAT as M; M.run()" || ERROR=1
|
||||
exit "$ERROR"
|
Loading…
Add table
Add a link
Reference in a new issue