File tree Expand file tree Collapse file tree 18 files changed +243
-338
lines changed Expand file tree Collapse file tree 18 files changed +243
-338
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change
1
+ {% extends 'gitignore.jj2' %}
2
+
3
+ {%block extra %}
4
+ .idea
5
+ {%endblock%}
Original file line number Diff line number Diff line change 1
1
{% extends "setup.py.jj2" %}
2
+
3
+ {%block compat_block%}
4
+ {%endblock%}
Original file line number Diff line number Diff line change
1
+ {% extends "travis.yml.jj2" %}
2
+
3
+ {%block custom_python_versions%}
4
+ python :
5
+ - 3.8-dev
6
+ - 3.7
7
+ - 3.6
8
+ - 3.5
9
+ {%endblock%}
Original file line number Diff line number Diff line change 1
1
{% extends "tests/requirements.txt.jj2" %}
2
2
3
3
{%block extras %}
4
+ moban
5
+ black;python_version>="3.6"
6
+ isort;python_version>="3.6"
4
7
{%endblock%}
Original file line number Diff line number Diff line change 1
1
requires :
2
- - pypi-mobans-pkg==0.0.4
2
+ - type : git
3
+ url : https://github.com/moremoban/pypi-mobans
4
+ submodule : true
3
5
configuration :
4
6
template_dir :
5
- - " pypi-mobans-pkg :templates"
7
+ - " pypi-mobans:templates"
6
8
- " .moban.d"
7
9
configuration : snapshot-selenium.yml
8
10
targets :
9
11
- README.rst : CUSTOM_README.rst.jj2
10
12
- setup.py : custom_setup.py.jj2
11
13
- requirements.txt : requirements.txt.jj2
12
14
- " tests/requirements.txt " : " tests/custom_requirements.txt.jj2"
13
- - " docs/source/conf.py " : " docs/conf.py_t"
14
15
- test.sh : test.script.jj2
15
16
- " snapshot_selenium/_version.py " : " _version.py.jj2"
16
- - .gitignore : gitignore.jj2
17
- - .travis.yml : travis.yml.jj2
18
- - Pipfile : Pipfile.jj2
17
+ - .gitignore : custom_gitignore.jj2
18
+ - .travis.yml : custom_travis.yml
19
+ - Pipfile : Pipfile.jj2
20
+ - output : CHANGELOG.rst
21
+ template : CHANGELOG.rst.jj2
22
+ - lint.sh : lint.script.jj2
Original file line number Diff line number Diff line change
1
+
1
2
sudo : false
2
3
dist : xenial
3
4
language : python
8
9
- 3.7
9
10
- 3.6
10
11
- 3.5
12
+
13
+ stages :
14
+ - test
15
+ - lint
16
+
17
+ .disable_global : &disable_global
18
+ before_install : false
19
+ install : true
20
+ before_script : false
21
+ after_success : false
22
+ after_failure : false
23
+
24
+ .lint : &lint
25
+ << : *disable_global
26
+ python : 3.6
27
+ stage : lint
28
+ install : pip install flake8
29
+ script : flake8
30
+
31
+ jobs :
32
+ include :
33
+ - *lint
34
+
35
+ stage : test
36
+
37
+ script : make test
38
+
11
39
before_install :
12
40
- if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then
13
41
mv min_requirements.txt requirements.txt ;
Original file line number Diff line number Diff line change
1
+ Change log
2
+ ================================================================================
3
+
4
+ 0.0.2 - 01.04.2019
5
+ --------------------------------------------------------------------------------
6
+
7
+ update
8
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9
+
10
+ #. it will take an external browser driver and render images
11
+
12
+ 0.0.1 - 09.04.2019
13
+ --------------------------------------------------------------------------------
14
+
15
+ first release
16
+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
17
+
18
+ #. use selenium driver for rendering pyecharts output as image
Original file line number Diff line number Diff line change 1
- all : test
2
-
3
- test :
4
- bash test.sh
1
+ all : test
2
+
3
+ test :
4
+ bash test.sh
5
+
6
+ format :
7
+ isort -rc .
8
+ black -l 79 snapshot_selenium
9
+ black -l 79 setup.py
10
+ black -l 79 tests
11
+
12
+
13
+ lint :
14
+ make lint
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ name = 'pypi'
7
7
python_version = ' 3.6'
8
8
9
9
[packages ]
10
- selenium = " *"
10
+ selenium = " *"
11
11
12
12
[dev-packages ]
13
13
nose = " *"
You can’t perform that action at this time.
0 commit comments