Implement snapshot testing via CLI

This commit is contained in:
henryruhs
2023-06-01 10:00:57 +02:00
parent 11b68f2e0f
commit eea2486e09
4 changed files with 12 additions and 0 deletions

View File

@@ -14,3 +14,15 @@ jobs:
python-version: 3.9
- run: pip install flake8
- run: flake8 run.py core
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- run: pip install -r requirements.txt
- run: ./run.py -f=examples/face.jpg -t=examples/target.mp4 -o=examples/output.mp4
- run: diff examples/snapshot.mp4 examples/output.mp4 || exit 1

BIN
examples/face.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 537 KiB

BIN
examples/snapshot.mp4 Normal file

Binary file not shown.

BIN
examples/target.mp4 Normal file

Binary file not shown.