Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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