mirror of
https://github.com/Balshgit/mosgortrans.git
synced 2025-09-11 13:00:40 +03:00
20 lines
387 B
YAML
20 lines
387 B
YAML
name: selenoid
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test-selenoid:
|
|
name: Run test suite
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
SELENOIDTEST: 1
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
- name: Run tests
|
|
run: |
|
|
cd tests
|
|
docker-compose run test-bot python -m pytest tests/bot/test_bot_selenoid.py -vv |