|
| 1 | +[bumpversion] |
| 2 | +current_version = 1.1.0 |
| 3 | +commit = True |
| 4 | +tag = True |
| 5 | + |
1 | 6 | [aliases] |
2 | 7 | release = register clean --all sdist |
3 | 8 |
|
4 | 9 | [flake8] |
5 | 10 | max-line-length = 140 |
6 | 11 | exclude = tests/*,*/migrations/*,*/south_migrations/* |
7 | 12 |
|
8 | | -[bumpversion] |
9 | | -current_version = 1.0.2 |
10 | | -commit = True |
11 | | -tag = True |
12 | | - |
13 | 13 | [bumpversion:file:setup.py] |
| 14 | + |
14 | 15 | [bumpversion:file:docs/conf.py] |
| 16 | + |
15 | 17 | [bumpversion:file:src/lazy_object_proxy/__init__.py] |
16 | 18 |
|
17 | 19 | [pytest] |
18 | | -norecursedirs = |
19 | | - .git |
20 | | - .tox |
21 | | - .env |
22 | | - dist |
23 | | - build |
24 | | - south_migrations |
25 | | - migrations |
26 | | -python_files = |
27 | | - test_*.py |
28 | | - *_test.py |
29 | | - tests.py |
30 | | -addopts = |
31 | | - -rxEfs |
32 | | - --strict |
33 | | - --ignore=docs/conf.py |
34 | | - --ignore=setup.py |
35 | | - --ignore=ci |
36 | | - --doctest-modules |
37 | | - --doctest-glob=\*.rst |
38 | | - --tb=short |
39 | | -markers = |
40 | | - xfail_subclass: Expected test to fail with a subclass of Proxy. |
41 | | - xfail_simple: Expected test to fail on the `simple` implementation. |
| 20 | +norecursedirs = |
| 21 | + .git |
| 22 | + .tox |
| 23 | + .env |
| 24 | + dist |
| 25 | + build |
| 26 | + south_migrations |
| 27 | + migrations |
| 28 | +python_files = |
| 29 | + test_*.py |
| 30 | + *_test.py |
| 31 | + tests.py |
| 32 | +addopts = |
| 33 | + -rxEfs |
| 34 | + --strict |
| 35 | + --ignore=docs/conf.py |
| 36 | + --ignore=setup.py |
| 37 | + --ignore=ci |
| 38 | + --doctest-modules |
| 39 | + --doctest-glob=\*.rst |
| 40 | + --tb=short |
| 41 | +markers = |
| 42 | + xfail_subclass: Expected test to fail with a subclass of Proxy. |
| 43 | + xfail_simple: Expected test to fail on the `simple` implementation. |
42 | 44 |
|
43 | 45 | [isort] |
44 | | -force_single_line=True |
45 | | -line_length=120 |
46 | | -known_first_party=lazy_object_proxy |
47 | | -default_section=THIRDPARTY |
48 | | -forced_separate=test_lazy_object_proxy |
| 46 | +force_single_line = True |
| 47 | +line_length = 120 |
| 48 | +known_first_party = lazy_object_proxy |
| 49 | +default_section = THIRDPARTY |
| 50 | +forced_separate = test_lazy_object_proxy |
49 | 51 |
|
50 | 52 | [matrix] |
51 | | -# This is the configuration for the `./bootstrap.py` script. |
52 | | -# It generates `.travis.yml`, `tox.ini` and `appveyor.yml`. |
53 | | -# |
54 | | -# Syntax: [alias:] value [!variable[glob]] [&variable[glob]] |
55 | | -# |
56 | | -# alias: |
57 | | -# - is used to generate the tox environment |
58 | | -# - it's optional |
59 | | -# - if not present the alias will be computed from the `value` |
60 | | -# value: |
61 | | -# - a value of "-" means empty |
62 | | -# !variable[glob]: |
63 | | -# - exclude the combination of the current `value` with |
64 | | -# any value matching the `glob` in `variable` |
65 | | -# - can use as many you want |
66 | | -# &variable[glob]: |
67 | | -# - only include the combination of the current `value` |
68 | | -# when there's a value matching `glob` in `variable` |
69 | | -# - can use as many you want |
70 | | - |
71 | | -python_versions = |
72 | | - 2.6 |
73 | | - 2.7 |
74 | | - 3.3 |
75 | | - 3.4 |
76 | | - pypy |
77 | | - |
78 | | -dependencies = |
79 | | - :Django !python_versions[2.6] |
80 | | - : &python_versions[2.6] |
81 | | - |
82 | | -coverage_flags = |
83 | | - : true |
84 | | - nocover: false |
| 53 | +python_versions = |
| 54 | + 2.6 |
| 55 | + 2.7 |
| 56 | + 3.3 |
| 57 | + 3.4 |
| 58 | + pypy |
| 59 | +dependencies = |
| 60 | + :Django !python_versions[2.6] |
| 61 | + : &python_versions[2.6] |
| 62 | +coverage_flags = |
| 63 | + : true |
| 64 | + nocover: false |
| 65 | +environment_variables = |
| 66 | + - |
85 | 67 |
|
86 | | -environment_variables = |
87 | | - - |
0 commit comments