diff options
author | w0rp <devw0rp@gmail.com> | 2019-05-21 13:53:09 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2019-05-21 13:53:09 +0100 |
commit | 3e3801e81ef70d3b35b7c527fbd1b4f62d50bae5 (patch) | |
tree | 79ce1ca62632864002e002bef38e957fe46025bb /test/script | |
parent | 89db85121c001fc60787647f012978a2328816a5 (diff) | |
download | ale-3e3801e81ef70d3b35b7c527fbd1b4f62d50bae5.zip |
Revert "Fix #2492 - Remove all Deoplete support for now"
This reverts commit 975cc7af8fbabe234a220c84e56b7ff719d8d959.
Diffstat (limited to 'test/script')
-rwxr-xr-x | test/script/custom-checks | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/script/custom-checks b/test/script/custom-checks index d4027fec..20dbfb80 100755 --- a/test/script/custom-checks +++ b/test/script/custom-checks @@ -67,4 +67,14 @@ echo test/script/check-toc || exit_code=$? +echo '========================================' +echo 'Check Python code' +echo '========================================' +echo + +docker run --rm -v "$PWD:/testplugin" "$DOCKER_RUN_IMAGE" \ + python -W ignore -m unittest discover /testplugin/test/python \ + || exit_code=$? +echo + exit $exit_code |