summaryrefslogtreecommitdiff
path: root/run_tests.sh
blob: ddf2f7b444ad1bf3522e5fe86ad88cfa4a7ee362 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

cd /rdflib
pip install -e .

test_command="nosetests --with-timer --timer-top-n 42 --with-coverage --cover-tests --cover-package=rdflib"
echo "Running tests..."
echo "Test command: $test_command"
$test_command