21 lines
396 B
YAML
21 lines
396 B
YAML
---
|
|
- hosts: localhost
|
|
tags:
|
|
- classic
|
|
roles:
|
|
- role: standard-test-source
|
|
|
|
- role: standard-test-basic
|
|
required_packages:
|
|
- python3-ply
|
|
tests:
|
|
- unittests:
|
|
dir: "source/python3"
|
|
run: >-
|
|
rm -rf ply* &&
|
|
pushd test &&
|
|
./cleanup.sh &&
|
|
python3 testlex.py &&
|
|
python3 testyacc.py &&
|
|
popd
|