Skip to content

Commit f9c9dfe

Browse files
committed
initial import
0 parents  commit f9c9dfe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+2221
-0
lines changed

.coveragerc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[report]
2+
include =
3+
src/redturtle/*
4+
omit =
5+
*/test*
6+
*/upgrades/*

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[*]
2+
indent_style = space
3+
end_of_line = lf
4+
insert_final_newline = true
5+
trim_trailing_whitespace = true
6+
charset = utf-8
7+
8+
[{*.py,*.cfg}]
9+
indent_size = 4
10+
11+
[{*.html,*.dtml,*.pt,*.zpt,*.xml,*.zcml,*.js}]
12+
indent_size = 2
13+
14+
[Makefile]
15+
indent_style = tab

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CHANGES.rst merge=union

.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
.coverage
2+
.python-version
3+
*.egg-info
4+
*.log
5+
*.mo
6+
*.py?
7+
*.swp
8+
# dirs
9+
bin/
10+
buildout-cache/
11+
develop-eggs/
12+
eggs/
13+
htmlcov/
14+
include/
15+
lib/
16+
local/
17+
node_modules/
18+
parts/
19+
src/*
20+
dist/*
21+
test.plone_addon/
22+
var/
23+
# files
24+
.installed.cfg
25+
.mr.developer.cfg
26+
lib64
27+
log.html
28+
output.xml
29+
pip-selfcheck.json
30+
report.html
31+
.vscode/
32+
.tox/
33+
reports/
34+
# excludes
35+
!.coveragerc
36+
!.editorconfig
37+
!.gitattributes
38+
!.gitignore
39+
!.gitkeep
40+
!.travis.yml
41+
!src/redturtle

.travis.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
dist: bionic
2+
language: python
3+
sudo: false
4+
cache:
5+
pip: true
6+
directories:
7+
- eggs
8+
python:
9+
- "2.7"
10+
matrix:
11+
include:
12+
- python: "2.7"
13+
env: PLONE_VERSION=43
14+
- python: "2.7"
15+
env: PLONE_VERSION=51
16+
- python: "2.7"
17+
env: PLONE_VERSION=52
18+
- python: "3.7"
19+
env: PLONE_VERSION=52
20+
sudo: true
21+
fast_finish: true
22+
before_install:
23+
- sudo apt-get install -y firefox-geckodriver
24+
- virtualenv -p `which python` .
25+
- bin/pip install -r requirements.txt -c constraints_plone$PLONE_VERSION.txt
26+
- cp test_plone$PLONE_VERSION.cfg buildout.cfg
27+
28+
install:
29+
- bin/buildout -N -t 3 code-analysis:return-status-codes=True annotate
30+
- bin/buildout -N -t 3 code-analysis:return-status-codes=True
31+
32+
before_script:
33+
- 'export DISPLAY=:99.0'
34+
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
35+
- sleep 3
36+
- firefox -v
37+
38+
script:
39+
# Run code-analysis, except on Python 3.6, which mysteriously fails to find zc.buildout.
40+
- python --version 2> /dev/stdout | grep 3.6 || bin/code-analysis
41+
- bin/test --all
42+
43+
after_success:
44+
- bin/createcoverage --output-dir=parts/test/coverage
45+
- bin/pip install coverage
46+
- bin/python -m coverage.pickle2json
47+
- bin/pip install -q coveralls
48+
- bin/coveralls

CHANGES.rst

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Changelog
2+
=========
3+
4+
5+
1.0a1 (unreleased)
6+
------------------
7+
8+
- Initial release.
9+
[cekk]

CONTRIBUTORS.rst

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Contributors
2+
============
3+
4+
- RedTurtle Technology, [email protected]

DEVELOP.rst

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
Using the development buildout
2+
==============================
3+
4+
Create a virtualenv in the package::
5+
6+
$ virtualenv --clear .
7+
8+
Install requirements with pip::
9+
10+
$ ./bin/pip install -r requirements.txt
11+
12+
Run buildout::
13+
14+
$ ./bin/buildout
15+
16+
Start Plone in foreground:
17+
18+
$ ./bin/instance fg
19+
20+
21+
Running tests
22+
-------------
23+
24+
$ tox
25+
26+
list all tox environments:
27+
28+
$ tox -l
29+
py27-Plone43
30+
py27-Plone51
31+
py27-Plone52
32+
py37-Plone52
33+
build_instance
34+
code-analysis
35+
lint-py27
36+
lint-py37
37+
coverage-report
38+
39+
run a specific tox env:
40+
41+
$ tox -e py37-Plone52
42+

0 commit comments

Comments
 (0)