-
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.
Make license file compliant, separate dev dependencies (#55)
* Testing update for 3.11 * Testing upgrade scikit-image * Separate pytest dependency to requirements_dev.txt * Update license file to compliant MIT * revert scikit-image update
- Loading branch information
1 parent
1e4ab12
commit a1f3f9a
Showing
8 changed files
with
38 additions
and
27 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,2 @@ | ||
pytest==7.2.0 | ||
pytest-xdist==3.1.0 |
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,22 @@ | ||
# 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 | ||
COPY requirements_dev.txt /tests_dir | ||
|
||
RUN pip install -r requirements.txt | ||
RUN pip install -r requirements_dev.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