forked from SpikeInterface/spiketoolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
31 lines (29 loc) · 1.53 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
jobs:
include:
- name: "Python 3.7.0 on Xenial Linux"
os: linux
language: python
python:
- '3.7'
deploy:
provider: pypi
user: alejoe91
on:
tags: true
password:
secure: Ya7Z6AouMhTiBA7G8sUNncA92h+j+JTW4a8AwyDklFB/0poxrhUZwpfMj80yaLfEGspTFaUCvc5oBQB3bLbrHmYAFP3TQKm2X8tQSR5XZXew1uvtGBVMebW4DHSFeQLEVyHjY6q8tzA0jSbHetVlc+Vfv3xtAeD4w7Ff2x4HoWQJUKMkdVvROi/OIjLeTqiMc7LOGfDtT0AJUFp86u1auv8Mriw9L06dKI9E9SFd1t85sOv/RosTtQD/f8o0kHZbkkkpQOSLsh5xQZ472pGk/zfvAk1BEB7hr1eaWNeJqdk/NQL1ONr5nvs5O0SzURz/PH8lAMBdV1tr5NzBWXy7dTtHPW7WXvJlvZR/s39XZFRnSWXJlhvZRoGrY54tzpYjnH5+dkzdZYcTcCIgpmNPGGZ8cckq5E4pQTAduhIwfTJ5v8EMBMFqXpr9+T+ynk/MXkDX2x1VSGetTpR2IR+mAx49xi7gC+4YmbJk7Y0lATNpoCSAcf0pSrYHtPsrUhU/2sd4PGFxkrqTTluf1LJb/g+IFSF8EnaQFCoBcxmJUVDyM+LReAhTjaENFKB9r7H75YZE9h0xcC0N/dGEeZGE3DVmfkfJIDGtdDezXuWlrWZQT6ICvItasA8RZn1v+MtwuenQI8050emwvaNvStypkQEpcYuTkV59FzT828pK5cE=
- name: "Python 3.7.0 on Windows"
os: windows
language: shell
before_install:
- choco install python --version 3.7.0
- python -m pip install --upgrade pip
env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
install:
# spikeextractors is taken from github to get latest version
- pip install https://github.com/SpikeInterface/spikeextractors/archive/master.zip
- pip install https://github.com/SpikeInterface/spikemetrics/archive/master.zip
- pip install https://github.com/SpikeInterface/spikefeatures/archive/master.zip
- pip install .
- pip install pytest==4.3
script: pytest