Skip to content

Commit

Permalink
fixing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mmmaat committed Nov 24, 2023
1 parent 0266153 commit bddab74
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
cd espeak-ng
./autogen.sh
./configure
make
make src/espeak-ng
sudo make install
sudo ldconfig
espeak --version
Expand Down
3 changes: 2 additions & 1 deletion test/test_punctuation.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ def test_preserve(inp):
def test_preserve_2(text, expected_restore, expected_output):
marks = ".!;:,?"
punct = Punctuation(marks=marks)
assert expected_restore == punct.restore(*punct.preserve(text), sep=default_separator, strip=False)
assert expected_restore == punct.restore(
*punct.preserve(text), sep=default_separator, strip=False)

output = phonemize(
text, backend="espeak",
Expand Down

0 comments on commit bddab74

Please sign in to comment.