20 lines
433 B
YAML
20 lines
433 B
YAML
---
|
|
- hosts: localhost
|
|
tags:
|
|
- classic
|
|
roles:
|
|
- role: standard-test-basic
|
|
required_packages:
|
|
- python3-asn1crypto
|
|
- python3-pytest
|
|
# upstream does not include tests in tar ball. Fetch unit tests
|
|
# from GitHub.
|
|
repositories:
|
|
- repo: https://github.com/wbond/asn1crypto.git
|
|
dest: asn1crypto
|
|
version: 0.24.0
|
|
tests:
|
|
- unittests:
|
|
dir: asn1crypto/tests
|
|
run: pytest-3
|