Skip to content
This repository was archived by the owner on Jun 27, 2023. It is now read-only.

Commit 868f146

Browse files
committed
Fix travis
1 parent 75c40b5 commit 868f146

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,9 @@ before_install:
1010
- sudo apt-get update -qq
1111
- sudo apt-get install -qq build-essential swig
1212
install:
13-
- sudo pip install .
13+
- pip install .
1414
script:
1515
- cd pocketsphinx/swig/python/test
16-
- sed -i 's/sphinxbase.sphinxbase/sphinxbase/g; s/pocketsphinx.pocketsphinx/pocketsphinx/g' *
1716
- python ./config_test.py
1817
- python ./decoder_test.py
1918
- python ./fsg_test.py

example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env python
22
from os import environ, path
33

4-
from pocketsphinx import *
5-
from sphinxbase import *
4+
from pocketsphinx.pocketsphinx import *
5+
from sphinxbase.sphinxbase import *
66

77
MODELDIR = "pocketsphinx/model"
88
DATADIR = "pocketsphinx/test/data"

0 commit comments

Comments
 (0)