Skip to content

Commit

Permalink
Merge pull request #294 from moremoban/dev
Browse files Browse the repository at this point in the history
release 0.5.0
  • Loading branch information
chfw authored Jul 14, 2019
2 parents 050d94c + fd798a0 commit e64e83d
Show file tree
Hide file tree
Showing 57 changed files with 648 additions and 452 deletions.
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

0 comments on commit e64e83d

Please sign in to comment.