FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-language-server/.circleci/config.yml at develop · deepnote/python-language-server · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
deepnote
/
python-language-server
Public
forked from
palantir/python-language-server
Notifications
You must be signed in to change notification settings
Fork
6
Star
3
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
python-language-server
/
.circleci
/
config.yml
Copy path
More file actions
More file actions
Latest commit
History
History
History
60 lines (54 loc) · 1.31 KB
Breadcrumbs
python-language-server
/
.circleci
/
config.yml
Copy path
File metadata and controls
60 lines (54 loc) · 1.31 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
version
:
2
jobs
:
python2-test
:
docker
:
-
image
:
"
python:2.7-stretch
"
steps
:
-
checkout
-
run
:
pip install -e .[all] .[test]
-
run
:
py.test -v test/
-
run
:
pylint pyls test
-
run
:
pycodestyle pyls test
-
run
:
pyflakes pyls test
python3-test
:
docker
:
-
image
:
"
python:3.6-stretch
"
steps
:
-
checkout
#
To test Jedi environments
-
run
:
python3 -m venv /tmp/pyenv
-
run
:
/tmp/pyenv/bin/python -m pip install loghub
-
run
:
pip install -e .[all] .[test]
-
run
:
py.test -v test/
lint
:
docker
:
-
image
:
"
python:2.7-stretch
"
steps
:
-
checkout
-
run
:
pip install -e .[all] .[test]
-
run
:
pylint pyls test
-
run
:
pycodestyle pyls test
-
run
:
pyflakes pyls test
publish
:
docker
:
-
image
:
"
python:3.6-stretch
"
steps
:
-
checkout
-
run
:
./scripts/circle/pypi.sh
workflows
:
version
:
2
build
:
jobs
:
-
python2-test
:
filters
:
{ tags: { only: /.*/ } }
-
python3-test
:
filters
:
{ tags: { only: /.*/ } }
-
publish
:
filters
:
tags
:
only
:
/[0-9]+(\.[0-9]+)+((-(beta|rc)[0-9]{1,2})(\.[0-9])?)?/
branches
:
ignore
:
/.*/
requires
:
-
python2-test
-
python3-test
Back
|
FazBrowse Home
|
New Git URL