diff options
| author | mitermayer <mitermayer.reis@gmail.com> | 2019-08-31 03:04:13 +0000 |
|---|---|---|
| committer | mitermayer <mitermayer.reis@gmail.com> | 2019-08-31 03:04:13 +0000 |
| commit | 3ab823925f30271bac6addc008f771665812caab (patch) | |
| tree | 89a6142af4a6acbce0fecc65f8d42b23df028c18 | |
| parent | 0188e98b1f8f71dcd162f0b3650c416707d38cd3 (diff) | |
| download | vim-prettier-3ab823925f30271bac6addc008f771665812caab.tar.xz | |
enabling-tests-to-auto-run-on-ci - Enabling newly fixed docker image
- Docker image is now ready to be tested
| -rw-r--r-- | Dockerfile | 3 | ||||
| -rwxr-xr-x | run-test | 14 |
2 files changed, 10 insertions, 7 deletions
@@ -52,5 +52,8 @@ RUN install_vim -tag v7.4.052 -name vim7 -build \ # upgrade node and yarn RUN npm install -g npm yarn +# copy vimrc +ADD tests/vimrc /root/.vimrc + # install vint RUN pip install typing>=4.6.2 pathlib==1.0.1 enum34>=1.0.4 vim-vint==0.3.19 @@ -8,10 +8,10 @@ docker run \ "mitermayer/vim-test-bed" \ yarn --cwd testplugin lint -#echo "Running tests..." -#docker run \ -# --rm \ -# -v $PWD:/testplugin \ -# -v $PWD/tests:/home \ -# "mitermayer/vim-test-bed" \ -# yarn --cwd testplugin test +echo "Running tests..." +docker run \ + --rm \ + -v $PWD:/testplugin \ + -v $PWD/tests:/home \ + "mitermayer/vim-test-bed" \ + yarn --cwd testplugin test |
