mirror of
https://github.com/FreeOpcUa/opcua-asyncio
synced 2025-10-29 17:07:18 +08:00
17 lines
349 B
YAML
17 lines
349 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
- "pypy3"
|
|
# command to install dependencies
|
|
install:
|
|
- pip install python-dateutil
|
|
- pip install pytz
|
|
- pip install lxml
|
|
- pip install aiofiles
|
|
- pip install aiosqlite
|
|
- pip install pytest --upgrade
|
|
- pip install pytest-asyncio
|
|
- pip install cryptography
|
|
# command to run tests
|
|
script: pytest -v
|