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 2412d58fcd Skip all python2 tests by default
python2 is deprecated
2021-02-07 16:43:17 +02: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)