From 23e63d29085a94382766af01aecf71eec3279d9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Sp=C3=B6rk?= Date: Sun, 8 Oct 2023 20:11:54 +0200 Subject: [PATCH] Add setup opencv step in test wf --- .github/workflows/test.yml | 6 ++++++ requirements_dev.txt | 10 +++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ba0bcf7..f7c38e7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,6 +11,12 @@ jobs: steps: - uses: actions/checkout@v3 + - name: Cache OpenCV + uses: UrielCh/opencv-cache-action@V1 + with: + branch: 4.x + BUILD_LIST: core + NO_CONTRIB: '' - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: diff --git a/requirements_dev.txt b/requirements_dev.txt index 9771e58..de7b0ac 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -3,4 +3,12 @@ coverage==7.2.3 pylint==2.17.2 pytest-timeout==2.1.0 pytest-httpserver==1.0.8 -pytest-asyncio==0.21.1 \ No newline at end of file +pytest-asyncio==0.21.1 + +imutils==0.5.4 +numpy==1.24.2 +opencv-python==4.8.1.78 +opencv-contrib-python==4.8.1.78 +vidgear==0.3.2 +PyYaml==6.0.1 +tqdm==4.66.1 \ No newline at end of file