run.sh 467 字节
Newer Older
1
#!/bin/bash -e
2

3
pushd $(dirname "${BASH_SOURCE[0]}")/.. >/dev/null
4
    pytest -xv -m 'not internet' \
5
        --json-report --json-report-file=time_python_test.json \
6 7 8 9 10 11 12 13
        --ignore test/unit/module/test_pytorch.py \
        --ignore test/pytorch_comparison \
        --ignore test/unit/hub/test_hub.py \
        --ignore test/unit/data \
        --ignore test/integration/manual \
        --ignore megengine/module/pytorch \
        megengine test
popd >/dev/null