This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: python | |
python: | |
- 2.7 | |
- 3.5 | |
- 3.6 | |
before_install: | |
- python --version | |
- pip install -U pip | |
- pip install -U pytest | |
- pip install codecov |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[pytest] | |
testpaths = | |
tests | |
skift | |
norecursedirs=dist build .tox scripts | |
addopts = | |
--doctest-modules | |
--cov=skift | |
-r a | |
-v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: python | |
python: | |
- 2.7 | |
- 3.5 | |
env: | |
- PARALLELIZE=true | |
- PARALLELIZE=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: python | |
matrix: | |
include: | |
- python: 2.7 | |
PARALLELIZE=false | |
- python: 3.5 | |
PARALLELIZE=false | |
- python: 3.5 | |
PARALLELIZE=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
matrix: | |
include: | |
- name: "Generic Python 3.5 on macOS" | |
os: osx | |
language: shell # 'language: python' is an error on Travis CI macOS | |
python: 3.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
matrix: | |
include: | |
- name: "Python 3.6.5 on macOS 10.13" | |
os: osx | |
osx_image: xcode9.4 # Python 3.6.5 running on macOS 10.13 | |
language: shell # 'language: python' is an error on Travis CI macOS | |
before_install: | |
- python3 --version | |
- pip3 install -U pip | |
- pip3 install -U pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
matrix: | |
include: | |
- name: "Python 2.7.14 on macOS 10.13" | |
os: osx | |
osx_image: xcode9.3 # Python 2.7.14_2 running on macOS 10.13 | |
language: shell # 'language: python' errors on Travis CI macOS | |
before_install: | |
- python --version | |
- pip install pytest --user | |
- pip install codecov --user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
matrix: | |
include: | |
- name: "Python 3.5.4 on Windows" | |
os: windows # Windows 10.0.17134 N/A Build 17134 | |
language: shell # 'language: python' is an error on Travis CI Windows | |
before_install: | |
- choco install python --version 3.5.4 | |
- python --version | |
- python -m pip install --upgrade pip | |
- pip3 install --upgrade pytest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" :echom "Loading Shay's .vimrc!" | |
" === vim-plug plugin manager === | |
" automatic installation of vim-plug itself, if missing | |
if empty(glob('~/.vim/autoload/plug.vim')) | |
:echom "vim-plug is missing. Installing vim-plug..." | |
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs | |
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim | |
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC | |
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@pytest.mark.parametrize("parallelize", [True, False]) | |
def test_rubin(parallelize): | |
if parallelize: | |
run_parallel() | |
else: | |
foo() |