Added Concourse CI files
This commit is contained in:
parent
2d40cd9444
commit
3c4a313970
31
concourse.yml
Normal file
31
concourse.yml
Normal file
|
@ -0,0 +1,31 @@
|
|||
---
|
||||
resources:
|
||||
- name: git-repo
|
||||
type: git
|
||||
source:
|
||||
uri: https://codeberg.org/lomion/tmdb-bot
|
||||
branch: develop
|
||||
|
||||
- name: python-image
|
||||
type: registry-image
|
||||
icon: docker
|
||||
source:
|
||||
repository: python
|
||||
tag: 3
|
||||
|
||||
jobs:
|
||||
- name: unittests
|
||||
public: true
|
||||
plan:
|
||||
- get: git-repo
|
||||
trigger: true
|
||||
- get: python-image
|
||||
- task: run_tests
|
||||
image: python-image
|
||||
config:
|
||||
platform: linux
|
||||
inputs:
|
||||
- name: git-repo
|
||||
run:
|
||||
dir: git-repo
|
||||
path: ./runtests.sh
|
3
runtests.sh
Executable file
3
runtests.sh
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
pip3 install -r requirements.txt
|
||||
python3 test_tmdb.py
|
Loading…
Reference in a new issue