trash-cli-core 0.1.0

Shared Rust foundation for trash-cli command migration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
SCRIPT_DIR="$(cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"

set -euo pipefail
set -x

python -m venv .venv
source .venv/bin/activate

"$SCRIPT_DIR/lib/install-python-requirements"
"$SCRIPT_DIR/lib/check-python-dep" tox

tox &&
    scripts/test-sdist &&
    scripts/check-types