-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fc8e786
commit 865a4cd
Showing
7 changed files
with
55 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# docker build -f tests_dockerfiles/Dockerfile-3-11 . | ||
FROM python:3.11 | ||
|
||
RUN apt-get update && apt-get install ffmpeg -y | ||
|
||
WORKDIR /tests_dir/ | ||
|
||
RUN pip install --upgrade pip | ||
|
||
COPY requirements.txt /tests_dir | ||
|
||
RUN pip install -r requirements.txt | ||
# RUN pip install noisereduce numpy pytest scipy pydub pytest-xdist scikit-image | ||
|
||
COPY audalign /tests_dir/audalign | ||
COPY test_audio /tests_dir/test_audio | ||
COPY tests /tests_dir/tests | ||
COPY pytest.ini /tests_dir | ||
|
||
RUN pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# docker build -f tests_dockerfiles/Dockerfile-3-12 . | ||
FROM python:3.12 | ||
|
||
RUN apt-get update && apt-get install ffmpeg -y | ||
|
||
WORKDIR /tests_dir/ | ||
|
||
RUN pip install --upgrade pip | ||
|
||
COPY requirements.txt /tests_dir | ||
|
||
RUN pip install -r requirements.txt | ||
# RUN pip install noisereduce numpy pytest scipy pydub pytest-xdist scikit-image | ||
|
||
COPY audalign /tests_dir/audalign | ||
COPY test_audio /tests_dir/test_audio | ||
COPY tests /tests_dir/tests | ||
COPY pytest.ini /tests_dir | ||
|
||
RUN pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters