Mercurial > code > home > repos > light9
comparison makefile @ 1506:37cbb245d93c
fix tests. add logging, some mypy types.
Ignore-this: 61371f65438a4e77f70d21cc5d5193bf
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Tue, 28 Mar 2017 07:48:10 +0000 |
parents | 185f3e2208c3 |
children | df1237c39672 |
comparison
equal
deleted
inserted
replaced
1505:e917fb4eea3a | 1506:37cbb245d93c |
---|---|
100 | 100 |
101 effect_node_setup: create_virtualenv packages binexec install_python_deps | 101 effect_node_setup: create_virtualenv packages binexec install_python_deps |
102 | 102 |
103 coffee: | 103 coffee: |
104 zsh -c 'coffee -cw light9/web/{.,live,timeline}/*.coffee' | 104 zsh -c 'coffee -cw light9/web/{.,live,timeline}/*.coffee' |
105 | |
106 env-mypy/bin/mypy: | |
107 mkdir -p env-mypy | |
108 virtualenv -p /usr/bin/python3 env-mypy/ | |
109 env-mypy/bin/pip install mypy==0.501 lxml==3.7.3 | |
110 | |
111 mypy-collector: env-mypy/bin/mypy | |
112 env-mypy/bin/mypy --py2 --ignore-missing-imports --strict-optional --custom-typeshed-dir stubs --html-report /tmp/rep bin/collector light9/collector/*.py |