Skip to content

Commit

Permalink
Merge 5c3b4c6 into e830db2
Browse files Browse the repository at this point in the history
  • Loading branch information
lk-geimfari committed Sep 27, 2018
2 parents e830db2 + 5c3b4c6 commit e87b174
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -6,6 +6,9 @@
[![PyPI version](https://badge.fury.io/py/wemake-python-styleguide.svg)](https://badge.fury.io/py/wemake-python-styleguide)
[![Documentation Status](https://readthedocs.org/projects/wemake-python-styleguide/badge/?version=latest)](https://wemake-python-styleguide.readthedocs.io/en/latest/?badge=latest)
[![Dependencies Status](https://img.shields.io/badge/dependencies-up%20to%20date-brightgreen.svg)](https://github.com/wemake-services/wemake-python-styleguide/pulls?utf8=%E2%9C%93&q=is%3Apr%20author%3Aapp%2Fdependabot)
[![Build status](https://ci.appveyor.com/api/projects/status/github/wemake-python-styleguide?svg=true)](https://ci.appveyor.com/project/sobolevn/wemake-python-styleguide)




Welcome to the most opinionated linter ever.
Expand Down
36 changes: 36 additions & 0 deletions appveyor.yml
@@ -0,0 +1,36 @@
environment:
matrix:

- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6.3"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.3"
PYTHON_ARCH: "64"

- PYTHON: "C:\\Python37"
PYTHON_VERSION: "3.7.0"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.0"
PYTHON_ARCH: "64"

install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "python --version"

# Upgrade to the latest version of pip to avoid it displaying warnings
# about it being out of date.
- "python -m pip install --disable-pip-version-check --user --upgrade pip"

# Setting up enviroment
- "pip install poetry"
- "poetry install"
- "poetry develop"

build: off

test_script:
- "poetry run pytest"
- "poetry run mypy wemake_python_styleguide"
- "poetry run doc8 -q docs"

0 comments on commit e87b174

Please sign in to comment.