File: .travis.yml

package info (click to toggle)
python-pymummer 0.12.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 344 kB
  • sloc: python: 2,385; sh: 55; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 267 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
language: python
addons:
  apt:
    packages:
    - g++
    - python-dev
cache:
  directories:
  - "build"
  - "$HOME/.cache/pip"
python:
  - "3.7"
  - "3.12"
sudo: false
install:
  - "source ./scripts/install_dependencies.sh"
script: "pip install . && pytest tests"