-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert bash scripts to Python #7465
Merged
Merged
Changes from 1 commit
Commits
Show all changes
156 commits
Select commit
Hold shift + click to select a range
6ac0724
initial
13c37f9
fix lint
9ae6f2e
fix
2eca67e
fix
c9b6f98
conver
7218092
fix
9250dcb
fix
9d33246
convert
41113da
fix
4fe2b2d
Merge branch 'develop' into convert_bash_1
406129e
Merge branch 'develop' into convert_bash_1
beb3c52
add
77e21d7
convert
c5e3c97
fix lint
a5eebeb
convert
f9a8586
convert
afb7068
Merge branch 'develop' into convert_bash_1
dc1845c
convert
eee27b9
convert
a6dc5bb
convert
e88fd13
address
c373919
fix path
06dc081
convert
6b57f85
Merge branch 'develop' into convert_bash_1
845a94c
remove files
4df7247
convert
d3a2464
fix comment
275d886
convert
3482864
convert
0ab00ec
fix
cbb09a7
address comments
d2ed087
convert
1ced71c
convert
60510ae
fix lint
f83f917
update circleci
fb26396
fix
d0a9f56
convert
df0c880
fix
af66d95
fix
48c8ce8
fix
fcbbbb0
fix
0af2fc4
Merge branch 'develop' into convert_bash_1
d3f80a3
sync with develop
740eb7a
fix
c6ae74b
fix conflicts
2834e82
use parse known args
8bbda96
remove user
cd84f0b
fix pip
2c03e24
try subprocess on pip install
cd4a824
fix
ae51254
fix
a7e21c5
fix
e9fd69d
fix
b26d7dc
fix
33a10ce
add node path
8ba23a5
fix
db7a003
fix lint
f521c7a
add args
b6d5878
fix lint
3086329
merge develo
b912d6d
add path
efabda0
address comments
899228a
address comments
6044c23
fix
c28656b
fix
2d62316
fix
1e7bcdb
fix
3a97331
fix frontend
cfad6b3
fix
11ae549
fix start
46eb948
fix lint
95b6ca9
clear cache
7130eb7
revert
13155a5
remove pylint
86647a8
remove pylint path
7c47253
add path
efc69b0
add pylint path
834bffa
fix
0186a8a
fix
326eda8
use vurtual env
4f4b3c2
fix
ad9fbae
fix
34efc74
add url in travis yaml
2d3d642
test
dcf6ec3
test
b532ba0
fix
f58f27a
test
93b7cf4
test
01970a5
test
eda2856
test
92d39d5
test
98b324b
test
4cc089c
test
2f2871c
tes
14d2659
fi
862490c
fix
1ec120f
test
9386c0c
fix conflicts
11d891d
fix
07eaf2b
Merge branch 'develop' into convert_bash_1
ce7d114
fix
6f04c1b
fix test
767d97e
fix
82804cb
fix conflicts
8e43243
fix
fabf517
address comments
8b7bb5a
fix
057f2e6
fix node
8003bfe
fix
25b64ad
remove vagrant
0492abe
fix
fd168ab
address comments
77ddcbc
fix conflicts
d89c3b0
fix lint
251669a
fix
b07b0d9
fix
03e56b7
address comments
770cd4f
fix
fafbde2
fix
9ec9238
fix
33f38a7
fix
35cfe60
fix
af6ad16
merge develop
55a1a99
address comments
c604eae
fix
90b50d8
fix
5bdc8b1
fix
891d088
only one backend_tests.py
a6e6b28
address comments
a42a17c
Merge branch 'develop' into convert_bash_1
28eaabe
fix
6e9b993
fix
7bf028d
fix
f0ebb60
fix
8fe8d20
fix errors
b73afbf
address comments
1b4638b
fix
64fc6c5
use None and args
320b65e
fix permission
127cead
fix
595be3c
fix conflicts
6939582
address comments
80a9599
fix e2e
5ac03b0
address comments
9a84e6f
fix
770c6f3
fix
d713208
skip e2e
c3006d2
remove yaml
2459c84
fix lint
89f61e6
use single quotes
07814eb
fix conflicts
89afe82
fix conflicts
6967564
test
6ba9902
fix linr
943759b
add tests
911d84a
use triple strings
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix
- Loading branch information
There are no files selected for viewing
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here and elsewhere, break this into separate bits; don't include any directory separators in your strings. Please do this anywhere else you refer to path names.
If you need to reference this path multiple times, create a new variable for it and make use of that. Do similar things in other files too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done