Skip to content

add unit sec to delay parameter (#33) #438

add unit sec to delay parameter (#33)

add unit sec to delay parameter (#33) #438

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
jenkins-version: ['jenkins:1.554', 'jenkins/jenkins:2.60', 'jenkins/jenkins:2.319']
services:
jenkins:
image: ${{ matrix.jenkins-version }}
ports:
- 8080:8080
options: --name jenkins
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox coveralls
- name: Get Jenkins initial password
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
run: |
sleep 10
echo ::set-env name=user::Admin
echo ::set-env name=password::$(docker exec jenkins cat /var/jenkins_home/secrets/initialAdminPassword)
docker exec jenkins jenkins-plugin-cli --plugins cloudbees-folder || true
docker restart jenkins
sleep 5
- name: Testing with tox
env:
COVERALLS_PARALLEL: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: tox && coveralls --service=github
finish:
needs: tests
runs-on: ubuntu-latest
steps:
- name: Coveralls finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true