Skip to content

Commit 3230ff0

Browse files
committed
- changing tests
1 parent bc23905 commit 3230ff0

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/sync-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26-
pip install pytest bs4 git+https://github.com/EchterAlsFake/eaf_base_api
26+
pip install -r requirements.txt --upgrade
2727
- name: Test with pytest
2828
run: |
2929
pytest

missav_api/missav_api.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,3 @@ def search(self, query: str, video_count: int = 50, max_workers: int = 20) -> Ge
225225
futures = [executor.submit(self._make_video_safe, url) for url in video_urls]
226226
for fut in as_completed(futures):
227227
yield fut.result()
228-
229-
client = Client()
230-
video = client.get_video("https://missav.ws/dm13/de/ppp-2165")
231-
print(video.title)

requirements.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
eaf_base_api
2+
bs4
3+
beautifulsoup4
4+
lxml
5+
m3u8
6+
brotli
7+
av

0 commit comments

Comments
 (0)