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

3 4 5 6 7 8 9 10 11 12 13
pushd $(dirname "${BASH_SOURCE[0]}")/.. >/dev/null
    pytest -xv -m 'not internet'\
        --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/docs/ \
        --ignore megengine/module/pytorch \
        megengine test
popd >/dev/null