Added support for the latest Enigma Virtual Box (10.70 Build 20240522) Added various error checks and handling Major code refactoring and cleanup CI : Added tests for the unpacker CI : Implemented TLS, FS, Overlay checks in the packer test app
16 lines
No EOL
359 B
YAML
16 lines
No EOL
359 B
YAML
name: Tests
|
|
on: [push, pull_request, workflow_dispatch]
|
|
|
|
jobs:
|
|
Test:
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-python@v5
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install -U pytest
|
|
python setup.py install
|
|
- name: Run tests
|
|
run: |
|
|
pytest -v -s |