Skip to content

Update .gitignore

Update .gitignore #50

Workflow file for this run

name: run-tests
on: [push]
jobs:
pytester:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: python3 -m venv p3env-videotools
- run: source p3env-videotools/bin/activate
#- run: cd VideoProcessingTools
- run: sudo apt update && sudo apt install ffmpeg
- run: pip install -r requirements.txt
- run: mkdir -p models && wget -q -O models/face_landmarker.task https://storage.googleapis.com/mediapipe-models/face_landmarker/face_landmarker/float16/latest/face_landmarker.task
- run: pytest