Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
9235e2e
:shirt: fix import order in reporter.py
jayvdb Jul 8, 2019
60c6ed8
:shirt: sync style from pypi-mobans-pkg 0.0.5
jayvdb Jul 8, 2019
0d81242
:green_heart: check local repo using moban in CI
jayvdb Jul 8, 2019
e6b131f
Merge pull request #280 from jayvdb/dogfood
chfw Jul 8, 2019
ec48af4
:green_heart: Remove Python 3.8-dev
jayvdb Jul 9, 2019
10bebef
:ambulance: fix unicode support on Python 2.7
jayvdb Jul 8, 2019
1f6b33e
:ambulance: Revert "Bug fix repo name (#227)"
jayvdb Jul 8, 2019
f13e613
:ambulance: ignore repo trailing slashes
jayvdb Jul 8, 2019
4ffe02e
Merge pull request #288 from jayvdb/use-git-url-parser
chfw Jul 10, 2019
7dc6379
Merge pull request #287 from jayvdb/i281
chfw Jul 11, 2019
5e895b6
:ambulance: choose version of ruamel.yaml
jayvdb Jul 8, 2019
492f73e
Merge pull request #285 from jayvdb/pin-ruamel-yaml
chfw Jul 13, 2019
a1bfd3c
Fix filename typos in README
lurch Jul 13, 2019
93028b6
Merge pull request #291 from lurch/patch-1
chfw Jul 13, 2019
8bd2511
:art: lint changelog.yml
jayvdb Jul 13, 2019
1f07af4
:fast_forward: sync min_requirements.txt
jayvdb Jul 13, 2019
cdd76b0
:art: lint yaml in tests
jayvdb Jul 13, 2019
628468a
:art: lint yaml in docs
jayvdb Jul 13, 2019
fe5d274
:art: lint azure yaml files
jayvdb Jul 13, 2019
0813a22
:green_heart: update isort config
jayvdb Jul 13, 2019
4285385
:green_heart: Use updated travis template
jayvdb Jul 13, 2019
ce031f2
Merge pull request #292 from jayvdb/lint-yaml
chfw Jul 14, 2019
dc85f72
:books: prepare changelog for 0.5.0
jayvdb Jul 14, 2019
f0d2df0
:arrow_up: record pypi-mobans dev branch in-sync
jayvdb Jul 14, 2019
9c79f3c
Merge pull request #293 from jayvdb/cl-0.5.0
chfw Jul 14, 2019
fd798a0
:egg: :ferris_wheel: release 0.5.0
chfw Jul 14, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .azure-pipelines-steps-macos.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.x'
- script: |
python -m pip install --upgrade pip setuptools wheel
test ! -f rnd_requirements.txt || pip install -r rnd_requirements.txt
pip install -r requirements.txt
pip install -r tests/requirements.txt
displayName: 'Setup dependencies'
- script: |
make
displayName: 'Run tests'
- task: UsePythonVersion@0
displayName: 'Use Python 3.x'
- script: |
python -m pip install --upgrade pip setuptools wheel
test ! -f rnd_requirements.txt || pip install -r rnd_requirements.txt
pip install -r requirements.txt
pip install -r tests/requirements.txt
displayName: 'Setup dependencies'
- script: |
make
displayName: 'Run tests'
22 changes: 11 additions & 11 deletions .azure-pipelines-steps.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.x'
- script: |
python -m pip install --upgrade pip setuptools wheel
if exist rnd_requirements.txt pip install -r rnd_requirements.txt
pip install -r requirements.txt
pip install -r tests\requirements.txt
displayName: 'Setup dependencies'
- script: |
test.bat
displayName: 'Run tests'
- task: UsePythonVersion@0
displayName: 'Use Python 3.x'
- script: |
python -m pip install --upgrade pip setuptools wheel
if exist rnd_requirements.txt pip install -r rnd_requirements.txt
pip install -r requirements.txt
pip install -r tests\requirements.txt
displayName: 'Setup dependencies'
- script: |
test.bat
displayName: 'Run tests'
5 changes: 4 additions & 1 deletion .isort.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
[settings]
line_length=79
known_first_party=lml, jinja2, ruamel.yaml, mock, nose
# Ignore generated files
skip=setup.py, moban/__init__.py
known_first_party=lml, crayons, jinja2, ruamel.yaml, mock, nose
indent=' '
multi_line_output=3
length_sort=1
include_trailing_comma=true
default_section=FIRSTPARTY
no_lines_before=LOCALFOLDER
sections=FUTURE,STDLIB,FIRSTPARTY,THIRDPARTY,LOCALFOLDER
Loading