updated testing #54

Merged
jblu merged 1 commits from dev-update-testing into main 2023-06-27 12:46:22 -05:00
2 changed files with 29 additions and 3 deletions
Showing only changes of commit a4fc54afe5 - Show all commits

View File

@ -3,7 +3,6 @@ LICENSE
*.log
README.md
requirements.txt
test_*
Dockerfile
*docker-test*
*.log

View File

@ -1,6 +1,5 @@
kind: pipeline
name: default
steps:
- name: docker
image: plugins/docker
@ -16,6 +15,9 @@ steps:
when:
branch:
- main
event:
- push
- pull_request
- name: docker-test
image: plugins/docker
settings:
@ -30,3 +32,28 @@ steps:
when:
branch:
- dev*
event:
- push
- pull_request
- name: test-main
image: git.jbranan.com/jblu/qbit-maid:latest
commands:
- python test_qbitmaid.py
- python test_dragnet.py
when:
branch:
- main
event:
- push
- pull_request
- name: test-dev
image: git.jbranan.com/jblu/qbit-maid:dev
commands:
- python test_qbitmaid.py
- python test_dragnet.py
when:
branch:
- dev*
event:
- push
- pull_request