Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2.2.4 #576

Merged
merged 42 commits into from
Mar 7, 2023
Merged

2.2.4 #576

Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
2780f0f
Fix error in some common voice japanese file paths
mmcauliffe Feb 17, 2023
22ca4ab
Add extra validation to textgrid interval start/end timestamps
mmcauliffe Feb 17, 2023
059daf1
Ensure GITHUB_TOKEN is available for tests
mmcauliffe Feb 17, 2023
e0b7490
Try to fix failing test runner
mmcauliffe Feb 18, 2023
a277966
Fix error in processing opus files
mmcauliffe Feb 18, 2023
f80b0f7
Remove GITHUB_TOKEN env variable
mmcauliffe Feb 18, 2023
bddb49b
Fix for logging disappearing after API runs
mmcauliffe Feb 18, 2023
7074ade
Attempt to fix CI
mmcauliffe Feb 18, 2023
ac241e7
Fix environment yaml
mmcauliffe Feb 18, 2023
55cdd7f
Fix mamba install
mmcauliffe Feb 18, 2023
9f0d517
Add clean up for initial tests?
mmcauliffe Feb 18, 2023
36046fe
Fix failing test
mmcauliffe Feb 18, 2023
ea60694
Add back in github token
mmcauliffe Feb 18, 2023
b178c0d
Attempt to fix test runner
mmcauliffe Feb 19, 2023
09454d9
remove test timing out
mmcauliffe Feb 19, 2023
8eca112
attempt to fix tests
mmcauliffe Feb 20, 2023
69ee10f
Attempt to fix github actions
mmcauliffe Feb 23, 2023
ff66e90
Update connections to use sockets
mmcauliffe Mar 2, 2023
38e3cd9
Switch over to using a dedicated server command
mmcauliffe Mar 2, 2023
8849a9d
Fix initialize bug on linux
mmcauliffe Mar 2, 2023
c9715e7
Add log output for database initialization
mmcauliffe Mar 2, 2023
0216fed
Config debugging on CI
mmcauliffe Mar 2, 2023
36ee223
Remove github token
mmcauliffe Mar 2, 2023
e8e70b8
Fix typo
mmcauliffe Mar 2, 2023
c2c71e6
Attempt to fix CI
mmcauliffe Mar 2, 2023
5d781eb
Another attempt
mmcauliffe Mar 2, 2023
8087aea
Another attempt
mmcauliffe Mar 3, 2023
fdc4f89
Fix wrong error message on start up
mmcauliffe Mar 3, 2023
13f7d6d
Another attempt
mmcauliffe Mar 3, 2023
d16ada2
Ensure sessions closing
mmcauliffe Mar 3, 2023
bb7efcb
Add support for piping to mfa g2p
mmcauliffe Mar 5, 2023
d6bd311
Add more debugging information for CI failures
mmcauliffe Mar 5, 2023
3a96687
Add timeout to tests
mmcauliffe Mar 5, 2023
f5998ec
Increase test timeout
mmcauliffe Mar 5, 2023
9026b40
reduce timeout
mmcauliffe Mar 5, 2023
808b013
reduce timout
mmcauliffe Mar 6, 2023
a11746d
timeout on the failing test
mmcauliffe Mar 6, 2023
8525d4d
Add timeouts to all alignment tests
mmcauliffe Mar 6, 2023
003443f
Remove sqlalchemy debug output
mmcauliffe Mar 6, 2023
10d023f
add back in github token
mmcauliffe Mar 6, 2023
e929572
Add support for per-utterance G2P
mmcauliffe Mar 6, 2023
fd550ad
Clean up
mmcauliffe Mar 7, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove sqlalchemy debug output
  • Loading branch information
mmcauliffe committed Mar 6, 2023
commit 003443f972368b5bd8dd96f912c53b420dda1974
2 changes: 0 additions & 2 deletions montreal_forced_aligner/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,6 @@ def configure_logger(identifier: str, log_file: Optional[Path] = None) -> None:
)
if config.current_profile.verbose:
handler.setLevel(logging.DEBUG)
logging.getLogger("sqlalchemy.engine").setLevel(logging.DEBUG)
logging.getLogger("sqlalchemy.pool").setLevel(logging.DEBUG)
else:
handler.setLevel(logging.INFO)
handler.setFormatter(logging.Formatter("%(message)s"))
Expand Down