Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Move CI/CD to Azure Pipelines; version from tags
  • Loading branch information
jwilges committed Oct 18, 2020
1 parent 6b06bfd commit f23eed7
Show file tree
Hide file tree
Showing 17 changed files with 496 additions and 284 deletions.
195 changes: 0 additions & 195 deletions .circleci/config.yml

This file was deleted.

5 changes: 4 additions & 1 deletion .coveragerc
Expand Up @@ -7,5 +7,8 @@ exclude_lines =
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.:
omit =
tests/*
drover/__metadata__.py
[html]
directory = coverage-html
directory = coverage-html
4 changes: 4 additions & 0 deletions .gitignore
@@ -1,6 +1,7 @@
.vscode
.nox

.mypy_cache
.pytest_cache

/.coverage
Expand All @@ -9,9 +10,12 @@

/docs/_build

/.eggs
/build
/dist

/drover/__metadata__.py

__pycache__
*.py[cdo]
*.egg-info
7 changes: 7 additions & 0 deletions .isort.cfg
@@ -0,0 +1,7 @@
[settings]
balanced_wrapping = True
include_trailing_comma = True
lexicographical = True
line_length = 100
multi_line_output = 3
use_parentheses = True
3 changes: 3 additions & 0 deletions .style.yapf
@@ -0,0 +1,3 @@
[style]
based_on_style = facebook
column_limit = 100
7 changes: 4 additions & 3 deletions README.md
@@ -1,9 +1,10 @@
# drover
*drover: a command-line utility to deploy Python packages to AWS Lambda functions*
*drover: a command-line utility for deploying Python packages to Lambda functions.*

[![circleci](https://img.shields.io/circleci/build/gh/jwilges/drover/master)](https://circleci.com/gh/jwilges/drover/tree/master)
[![build](https://img.shields.io/azure-devops/build/jwilges/drover/4/master)](https://jwilges.visualstudio.com/drover/_build?definitionId=4)
[![documentation](https://img.shields.io/readthedocs/drover/latest)](https://drover.readthedocs.io/en/latest/?badge=latest)
[![codecov](https://img.shields.io/codecov/c/gh/jwilges/drover/master)](https://codecov.io/gh/jwilges/drover/branch/master)
[![tests](https://img.shields.io/azure-devops/tests/jwilges/drover/4/master?compact_message)](https://jwilges.visualstudio.com/drover/_test/analytics?definitionId=4&contextType=build)
![coverage](https://img.shields.io/azure-devops/coverage/jwilges/drover/4/master)
![license](https://img.shields.io/github/license/jwilges/drover)
![pypi python versions](https://img.shields.io/pypi/pyversions/drover)
[![pypi release](https://img.shields.io/pypi/v/drover)](https://pypi.org/project/drover)
Expand Down

0 comments on commit f23eed7

Please sign in to comment.