File: .travis.yml

package info (click to toggle)
pdudaemon 0.0.7-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 272 kB
  • sloc: python: 1,459; xml: 299; makefile: 22; sh: 15
file content (16 lines) | stat: -rw-r--r-- 488 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
notifications:
    irc: "chat.freenode.net#pdudaemon"
    on_success: always
    on_failure: always
    use_notice: false
    skip_join: false

services:
    - docker

before_install:
    - tar -c requirements.txt share/Dockerfile.travis | docker build -t pdudaemon -f share/Dockerfile.travis -

script:
    - docker run -v $(pwd):/p -w /p pdudaemon pycodestyle --ignore=E501 .
    - docker run -v $(pwd):/p -w /p pdudaemon sh -c "python3 ./setup.py install && ./share/pdudaemon-test.sh"