Skip to content

Commit

Permalink
Merge pull request #12 from capitalone/dev
Browse files Browse the repository at this point in the history
Release v2022.3.0
  • Loading branch information
fdosani authored Mar 16, 2022
2 parents 3fdc77e + e1fc0e5 commit 135e7bc
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 30 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/edgetest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# This workflow runs edgetest on edgetest @ 17:35 UTC Fridays.
# https://github.com/fdosani/run-edgetest-action

name: Run edgetest
on:
schedule:
- cron: '35 17 * * 5'
jobs:
edgetest:
runs-on: ubuntu-latest
name: running edgetest
steps:
- uses: actions/checkout@v2
with:
ref: dev
- id: run-edgetest
uses: fdosani/[email protected]
with:
edgetest-flags: '-c setup.cfg --export'
base-branch: 'dev'
skip-pr: 'false'
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
author = "Akshay Gupta"

# The short X.Y version
version = "2021.12.5"
version = "2022.3.0"
# The full version, including alpha/beta/rc tags
release = ""

Expand Down
2 changes: 1 addition & 1 deletion edgetest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Package initialization."""


__version__ = "2021.12.5"
__version__ = "2022.3.0"

__title__ = "edgetest"
__description__ = "Bleeding edge dependency testing"
Expand Down
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
#
# This file is autogenerated by pip-compile with python 3.8
# This file is autogenerated by pip-compile with python 3.9
# To update, run:
#
# pip-compile
# pip-compile --output-file=requirements.txt setup.cfg
#
cerberus==1.3.4
# via edgetest (setup.py)
click==8.0.3
# via edgetest (setup.py)
# via edgetest (setup.cfg)
click==8.0.4
# via edgetest (setup.cfg)
packaging==21.3
# via edgetest (setup.py)
# via edgetest (setup.cfg)
pluggy==1.0.0
# via edgetest (setup.py)
pyparsing==3.0.6
# via edgetest (setup.cfg)
pyparsing==3.0.7
# via packaging
tabulate==0.8.9
# via edgetest (setup.py)
# via edgetest (setup.cfg)

# The following packages are considered to be unsafe in a requirements file:
# setuptools
48 changes: 29 additions & 19 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ license = Apache Software License
maintainer = Akshay Gupta
maintainer_email = [email protected]
url = https://github.com/capitalone/edgetest
python_requires =
python_requires =
>=3.7.0
project_urls =
project_urls =
Documentation = https://capitalone.github.io/edgetest/
Bug Tracker = https://github.com/capitalone/edgetest/issues
Source Code = https://github.com/capitalone/edgetest
classifiers =
classifiers =
Intended Audience :: Developers
Natural Language :: English
Operating System :: OS Independent
Expand All @@ -31,29 +31,29 @@ classifiers =
zip_safe = False
include_package_data = True
packages = find:
install_requires =
install_requires =
Cerberus<=1.3.4,>=1.3.0
click<=8.0.3,>=7.0
click<=8.0.4,>=7.0
pluggy<=1.0.0,>=1.0.0
tabulate>=0.8.9,<=0.8.9
tabulate<=0.8.9,>=0.8.9
packaging<=21.3,>20.6

[options.extras_require]
docs =
docs =
furo
sphinx
sphinx-copybutton
sphinx-tabs
pillow
recommonmark
tests =
tests =
coverage
flake8
mypy
pydocstyle
pytest
pytest-cov
qa =
qa =
pylint
pip-tools
pre-commit
Expand All @@ -62,12 +62,12 @@ qa =
types-click
types-pkg_resources
types-tabulate
build =
build =
build
twine
wheel
bumpver
dev =
dev =
coverage
flake8
mypy
Expand All @@ -94,21 +94,21 @@ dev =
bumpver

[options.entry_points]
console_scripts =
console_scripts =
edgetest = edgetest.interface:cli

[bumpver]
current_version = "2021.12.5"
current_version = "2022.3.0"
version_pattern = "YYYY.MM.INC0"
commit_message = "Bump {old_version} to {new_version}"
commit = True

[bumpver:file_patterns]
docs/source/conf.py =
docs/source/conf.py =
version = "{version}"
setup.cfg =
setup.cfg =
current_version = "{version}"
edgetest/__init__.py =
edgetest/__init__.py =
__version__ = "{version}"

[aliases]
Expand Down Expand Up @@ -141,11 +141,21 @@ allow_redefinition = True
pylint_minimum_score = 9.5

[tool:pytest]
markers =
markers =
unit: mark unit tests that do not require external interfaces and use mocking
integration: mark test that interact with an external system
addopts = --verbose

[edgetest]
extras =
[edgetest.envs.core]
python_version = 3.9
upgrade =
Cerberus
click
pluggy
tabulate
packaging
extras =
tests
deps =
pip-tools

0 comments on commit 135e7bc

Please sign in to comment.