We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent efc12e1 commit f1d06ffCopy full SHA for f1d06ff
2 files changed
scripts/install_and_run_tests.sh
@@ -15,5 +15,6 @@ test_target="$1"
15
if [[ $test_target != "" ]]; then
16
pytest -vv $test_target
17
else
18
- pytest && mypy --config-file pyproject.toml
+ pytest
19
+ ./scripts/run_mypy.sh --no-install
20
fi
scripts/uninstall_all.sh
@@ -1,10 +1,9 @@
1
#!/bin/bash
2
3
-# Remove slack-cli-hooks without a version specifier so that local builds are cleaned up
4
pip uninstall -y slack-cli-hooks
5
-# Collect all installed packages
+
6
PACKAGES=$(pip freeze | grep -v "^-e" | sed 's/@.*//' | sed 's/\=\=.*//')
7
-# Uninstall packages without exiting on a failure
8
for package in $PACKAGES; do
9
pip uninstall -y $package
10
done
0 commit comments