-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
5 changed files
with
86 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a single version of Python | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python | ||
|
||
name: Python application | ||
|
||
on: | ||
push: | ||
branches: [ "main"] | ||
paths-ignore: | ||
- '**/README.md' | ||
- '**/CONTRIBUTING.md' | ||
- '**LICENSE' | ||
pull_request: | ||
branches: [ "main" ] | ||
paths-ignore: | ||
- '**/README.md' | ||
- '**/CONTRIBUTING.md' | ||
- '**LICENSE' | ||
|
||
jobs: | ||
ruff: | ||
name: lint with ruff | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 3 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v2 | ||
- uses: chartboost/ruff-action@v1 | ||
with: | ||
args: 'format --check' | ||
config: .ruff.toml | ||
test: | ||
name: run pytest | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 5 | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.10' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.test | ||
pip install -r requirements.txt | ||
- name: Run pytest | ||
run: | | ||
PYTHONPATH=. python3.10 -m pytest tests/test_streamlit.py |
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,3 @@ | ||
pytest | ||
pytest-subtests | ||
ruff |
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,5 @@ | ||
import os | ||
|
||
cwd = os.getcwd() | ||
CONTAINER_NAME = "youtube_shorts_transcript_downloader" | ||
STREAMLIT_FILE = "youtube_shorts_transcript_downloader/app.py" |
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,27 @@ | ||
import subprocess | ||
import pytest | ||
import time | ||
from tests import STREAMLIT_FILE | ||
|
||
|
||
@pytest.fixture(scope="module") | ||
def start_streamlit_app(): | ||
cmd = f"python -m streamlit run {STREAMLIT_FILE} --server.headless true" | ||
process = subprocess.Popen( | ||
cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE | ||
) | ||
time.sleep(5) | ||
yield process | ||
process.terminate() | ||
process.wait() | ||
|
||
|
||
def test_streamlit(subtests, start_streamlit_app): | ||
with subtests.test(msg="streamlit up"): | ||
assert start_streamlit_app.poll() is None, "Streamlit app failed to start" | ||
|
||
with subtests.test(msg="streamlit down"): | ||
start_streamlit_app.terminate() | ||
time.sleep(2) | ||
assert start_streamlit_app.poll() is not None, "Streamlit app failed to stop" | ||
|