-
Notifications
You must be signed in to change notification settings - Fork 3
63 lines (51 loc) · 1.81 KB
/
run_test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Run Tests
on: [push, pull_request]
env:
mkvtoolnix: C:\Program Files\MKVToolNix
jobs:
run-tests:
name: "Test (${{matrix.os}}, Python ${{ matrix.python-version }})"
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Python requirements
run: pip install --upgrade --upgrade-strategy eager .
- name: Install platform-specific requirements (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt update
sudo apt install mkvtoolnix
- name: Install platform-specific requirements (macOS)
if: matrix.os == 'macos-latest'
run: brew install mkvtoolnix
- name: Install platform-specific requirements (Windows)
if: matrix.os == 'windows-latest'
run: |
choco install mkvtoolnix --no-progress --yes
Import-Module $env:ChocolateyInstall\helpers\chocolateyProfile.psm1
refreshenv
echo "C:\Program Files\MKVToolNix" >> $GITHUB_PATH
echo "{C:\Program Files\MKVToolNix}" >> $GITHUB_PATH
echo "C:/Program Files/MKVToolNix" >> $GITHUB_PATH
echo "$PATH"
- name: Install pytest
run: |
pip install pytest
- name: Run tests
run: |
echo "C:\Program Files\MKVToolNix" >> $GITHUB_PATH
echo "{C:\Program Files\MKVToolNix}" >> $GITHUB_PATH
echo "C:/Program Files/MKVToolNix" >> $GITHUB_PATH
echo "$PATH"
Get-Command mkvmerge
Test-Path "C:\Program Files\MKVToolNix" -PathType Container
mkvpropedit -h