diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-02-06 17:18:28 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-02-06 17:18:28 +0100 |
| commit | b274deda77d48575a0fbdc1dc354893fa3597b3d (patch) | |
| tree | 13fece00a31ebc62de8cf800803cb76fb0f755b4 /tox.ini | |
| parent | 2adb019f982847212e24daa10fe760783cc6ed47 (diff) | |
| download | minishell_test-package.tar.gz minishell_test-package.tar.bz2 minishell_test-package.zip | |
Updated tox.ini to test valgrindpackage
Diffstat (limited to 'tox.ini')
| -rw-r--r-- | tox.ini | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -2,9 +2,27 @@ envlist = py36,py37,py38,py39 [testenv] +passenv = + * + deps = flake8 mypy + +allowlist_externals = + git + rm + valgrind + +commands_pre = + git clone --recurse-submodules git://git.cacharle.xyz/minishell /tmp/minishell + pip install -e . + commands = flake8 minishell_test mypy minishell_test + python -m minishell_test -p /tmp/minishell + python -m minishell_test -p /tmp/minishell -k pwd + +commands_post = + rm -rf /tmp/minishell |
