Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/sentencepiece.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaku Kudo <taku910@users.noreply.github.com>2018-05-05 17:45:55 +0300
committerGitHub <noreply@github.com>2018-05-05 17:45:55 +0300
commit917a6f10beadfbef9e952f3881e714b27843d988 (patch)
treefc66c782342f267abed75fd8e70babbc1c28ec55 /test.sh
parentbf9cdd614e909fa3cbdafbc3071cc68735eb4484 (diff)
Update test.sh
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/test.sh b/test.sh
index 6d00e93..4224694 100755
--- a/test.sh
+++ b/test.sh
@@ -15,7 +15,7 @@ setup_debian() {
setup_fedora() {
dnf update -y
- dnf install -y rpm-build gcc-c++ make protobuf-devel autoconf automake libtool pkg-config python-pip
+ dnf install -y rpm-build gcc-c++ make protobuf-devel autoconf automake libtool pkg-config python-pip python-devel
}
build_generic() {
@@ -30,7 +30,9 @@ build_python() {
export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
ldconfig -v
- cd python; python setup.py test
+ cd python
+ python setup.py test
+ cd ..
}
build_linux_gcc_coverall_ubuntu() {