FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonVSCode/.travis.yml at master · SHEL-TAM-ABB/pythonVSCode · GitHub
SHEL-TAM-ABB
/
pythonVSCode
Public
forked from
DonJayamanne/pythonVSCode
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonVSCode
/
.travis.yml
Copy path
More file actions
More file actions
Latest commit
History
History
History
42 lines (40 loc) · 1.11 KB
Breadcrumbs
pythonVSCode
/
.travis.yml
Copy path
File metadata and controls
42 lines (40 loc) · 1.11 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
32
33
34
35
36
37
38
39
40
41
42
language
:
python
sudo
:
required
matrix
:
include
:
#
Use the built in venv for linux builds
-
os
:
linux
sudo
:
required
python
:
2.7
-
os
:
linux
sudo
:
required
python
:
3.5
#
Use generic language for osx
-
os
:
osx
language
:
generic
env
:
PYTHON=2.7.10
#
Use generic language for osx
-
os
:
osx
language
:
generic
env
:
PYTHON=3.5.1
#
Perform the manual steps on osx to install python3 and activate venv
before_install
:
|
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
brew update;
brew install openssl readline
brew outdated pyenv || brew upgrade pyenv
brew install pyenv-virtualenv
brew install pyenv-virtualenvwrapper
pyenv install $PYTHON
pyenv virtualenv $PYTHON MYVERSION
source ~/.pyenv/versions/MYVERSION/bin/activate
python --version
python -c 'import sys;print(sys.version)'
python -c 'import sys;print(sys.executable)'
fi
install
:
-
pip install -r requirements.txt
-
npm install
-
npm run vscode:prepublish
script
:
-
npm test --silent
Back
|
FazBrowse Home
|
New Git URL