Skip to content

Commit

Permalink
build: update docker compose deploy (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tohrusky authored Dec 24, 2024
1 parent 77d607c commit 2fb1f7c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
2 changes: 1 addition & 1 deletion conf/server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ qbittorrent:
port: 8091
username: admin
password: adminadmin
download_path: .
download_path: /downloads

finalrip:
url: http://localhost:8848
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ services:
image: lychee0/animepipeline:latest
restart: always
volumes:
- ../conf:/app/conf
- ./docker/downloads:/downloads
- ./animepipeline:/app/conf
- ./downloads:/downloads
networks:
- backend

Expand All @@ -23,8 +23,8 @@ services:
- PUID=1026
- PGID=100
volumes:
- ./docker/qb-config:/config
- ./docker/downloads:/downloads
- ./allinone/qb-config:/config
- ./downloads:/downloads
ports:
- "6881:6881"
- "6881:6881/udp"
Expand Down
6 changes: 2 additions & 4 deletions tests/test_tg.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@

from .util import CONFIG_PATH

video_key = "test_144p.mp4"


@pytest.mark.skipif(os.environ.get("GITHUB_ACTIONS") == "true", reason="Only test locally")
async def test_tg_bot() -> None:
Expand All @@ -19,9 +17,9 @@ async def test_tg_bot() -> None:

await sender.send_text(
text=get_telegram_text(
chinese_name="败犬女主太多了!",
chinese_name="from unit test ~~~ | 败犬女主太多了!",
episode=2,
file_name="[TensoRaws] Make Heroine ga Oosugiru! [02] [1080p AVC-8bit FLAC].mkv",
torrent_file_hash="700a6ed3967740eb02f12a3b346696b1170b20f8",
torrent_file_hash="this_is_a_fake_hash",
)
)

0 comments on commit 2fb1f7c

Please sign in to comment.