Skip to content

Commit

Permalink
Merge 6a67ad6 into f8fc2c4
Browse files Browse the repository at this point in the history
  • Loading branch information
mlin committed Apr 22, 2020
2 parents f8fc2c4 + 6a67ad6 commit 8d42f3b
Show file tree
Hide file tree
Showing 11 changed files with 539 additions and 280 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ check:
--search-path stubs \
--typeshed `python3 -c 'import site; print(site.getuserbase())'`/lib/pyre_check/typeshed \
--show-parse-errors check
pylint -j `python3 -c 'import multiprocessing as mp; print(mp.cpu_count())'` --errors-only WDL
# no-member disabled due to https://github.com/PyCQA/pylint/issues/3137
pylint -j `python3 -c 'import multiprocessing as mp; print(mp.cpu_count())'` --errors-only WDL -d no-member

check_check:
# regression test against pyre doing nothing (issue #100)
Expand All @@ -48,7 +49,8 @@ check_check:
# uses black to rewrite source files!
pretty:
black --line-length 100 --target-version py36 WDL/
pylint -d cyclic-import,empty-docstring,missing-docstring,invalid-name,bad-continuation --exit-zero WDL
# no-member disabled due to https://github.com/PyCQA/pylint/issues/3137
pylint -d cyclic-import,empty-docstring,missing-docstring,invalid-name,bad-continuation --exit-zero WDL -d no-member

# for use in CI: complain if source code isn't at a fixed point for black
sopretty:
Expand Down
Loading

0 comments on commit 8d42f3b

Please sign in to comment.