1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00
PySolFC/scripts/travis-ci-build
Juhani Numminen 2cb63cb3fc Skip all python2 tests by default
python2 is deprecated
2021-07-07 18:13:34 +03:00

13 lines
265 B
Bash

#!/bin/bash
set -e
# Functioned-out - may be useful later.
proc_path()
{
PATH="$(perl -lE 'my @p = split/:/,$ENV{PATH}; print join q#:#, grep { ! m#\A/opt/python# } @p;')" "$@"
}
make test
make dist
tar -xvf dist/PySolFC-*.tar.xz
(cd PySolFC-*/ && make test)