Skip to content

Commit

Permalink
Bump: release version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
titom73 committed Mar 16, 2022
1 parent 05abf7a commit 62a510e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 723 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.6', '3.7', '3.8']
python-version: ['3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand All @@ -24,12 +24,13 @@ jobs:
run: |
echo "PY_COLORS=1" >> $GITHUB_ENV
echo "ANSIBLE_FORCE_COLOR=1" >> $GITHUB_ENV
pip install poetry
poetry install
pip install pytest pytest-cov pytest-html pytest-dependency pytest-metadata
pip install -r requirements.txt
- name: Run Pytest
run: |
echo "PY_COLORS=1" >> $GITHUB_ENV
echo "ANSIBLE_FORCE_COLOR=1" >> $GITHUB_ENV
python setup.py develop
make test
env: # Or as an environment variable
ARISTA_TOKEN: ${{ secrets.ARISTA_TOKEN }}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ COVERAGE = --cov=eos_downloader

.PHONY: test
test:
poetry run pytest $(TEST_OPT) $(REPORT) $(COVERAGE) -m '$(TAG)' $(TESTS)
pytest $(TEST_OPT) $(REPORT) $(COVERAGE) -m '$(TAG)' $(TESTS)
2 changes: 1 addition & 1 deletion eos_downloader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
__author__ = '@titom73'
__email__ = 'tom@inetsix.net'
__date__ = '2022-01-26'
__version__ = '0.2.1'
__version__ = '0.3.0'

__all__ = ["CvpAuthenticationItem", "CvFeatureManager", "EOSDownloader", "ObjectDownloader", "reverse"]

Expand Down
Loading

0 comments on commit 62a510e

Please sign in to comment.