Skip to content

Commit

Permalink
Still trying to get the Windows CI green again
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardo-rodrigues committed Apr 3, 2019
1 parent 474004d commit 8a2516d
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 27 deletions.
5 changes: 0 additions & 5 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ environment:
global:
WITH_COMPILER: 'cmd /E:ON /V:ON /C .\ci\appveyor-with-compiler.cmd'
matrix:
- TOXENV: check
TOXPYTHON: C:\Python27\python.exe
PYTHON_HOME: C:\Python27
PYTHON_VERSION: '2.7'
PYTHON_ARCH: '32'
- TOXENV: 'py27,report'
TOXPYTHON: C:\Python27\python.exe
PYTHON_HOME: C:\Python27
Expand Down
2 changes: 1 addition & 1 deletion ci/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# WARNING: 'tox' must be installed globally or in the project's virtualenv
for line in subprocess.check_output(['tox', '--listenvs'], universal_newlines=True).splitlines()
]
tox_environments = [line for line in tox_environments if line not in ['clean', 'report', 'docs', 'check']]
tox_environments = [line for line in tox_environments if line not in ['clean', 'report', 'docs']]

for name in os.listdir(join("ci", "templates")):
with open(join(base_path, name), "w") as fh:
Expand Down
1 change: 0 additions & 1 deletion ci/templates/.travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ env:
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
matrix:
- TOXENV=check
- TOXENV=docs
matrix:
include:
Expand Down
5 changes: 0 additions & 5 deletions ci/templates/appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ environment:
global:
WITH_COMPILER: 'cmd /E:ON /V:ON /C .\ci\appveyor-with-compiler.cmd'
matrix:
- TOXENV: check
TOXPYTHON: C:\Python27\python.exe
PYTHON_HOME: C:\Python27
PYTHON_VERSION: '2.7'
PYTHON_ARCH: '32'
{% for env in tox_environments %}{{ '' }}{% if env.startswith(('py2', 'py3')) %}
- TOXENV: '{{ env }},report'
TOXPYTHON: C:\Python{{ env[2:4] }}\python.exe
Expand Down
15 changes: 0 additions & 15 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -49,21 +49,6 @@ deps =
pyenchant


[testenv:check]
deps =
docutils
check-manifest
flake8
readme-renderer
pygments
isort
skip_install = true
commands =
python setup.py check --strict --metadata
check-manifest {toxinidir}
flake8 decaylanguage tests setup.py
isort --verbose --check-only --diff --recursive decaylanguage tests setup.py

[testenv:coveralls]
deps =
coveralls
Expand Down

0 comments on commit 8a2516d

Please sign in to comment.