/
githubmirror
/
bash-completion
Обзор
Документация
Войти
/
githubmirror
/
bash-completion
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.10
test/docker/docker-script.sh
32 строки
743 B
Ville Skyttä
test: drop sourcing our no longer existing profile.d script
21 июн 2019, 11:14
21 июн 2019, 11:14
ed14353
Код
Авторство
О чём код?
#!/bin/sh -ex if [ $DIST = tools ]; then rc=0 perlcritic helpers/perl; rc=$((rc+$?)) perltidy -nst -nse helpers/perl; rc=$((rc+$?)) if [ -e helpers/perl.ERR ]; then cat helpers/perl.ERR rc=$((rc+1)) fi flake8 helpers/python test test/generate; rc=$((rc+$?)) black --check -t py27 -t py33 -t py34 -t py35 -t py36 -t py37 -t py38 \ helpers/python; rc=$((rc+$?)) black --check test test/generate; rc=$((rc+$?)) exit $rc fi if [ "$BSD" ]; then PATH=/usr/local/lib/bsd-bin:$PATH export PATH fi export bashcomp_bash=bash env autoreconf -i ./configure make -j xvfb-run make distcheck \ PYTESTFLAGS="--numprocesses=auto --dist=loadfile" \ RUNTESTFLAGS="--all --verbose"