-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configured tox, pre-commit and github-actions
- Loading branch information
Showing
71 changed files
with
1,292 additions
and
1,483 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,189 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- "*" | ||
pull_request: | ||
branches: | ||
- "*" | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
tests: | ||
name: Run unit tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: [3.7] | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install pip -U | ||
pip install tox codecov | ||
- name: Set TOXENV | ||
run: | | ||
python_version="${{ matrix.python-version }}" | ||
py_version="${python_version/./}" | ||
target_branch=${{ github.base_ref || github.ref }} | ||
target_branch=(`[[ ${target_branch::10} == 'refs/heads' ]] && echo ${target_branch:11} || echo $target_branch`) | ||
echo "target_branch =" $target_branch | ||
is_master=(`[[ $target_branch == 'master' ]] && echo 'true' || echo 'false'`) | ||
is_tag=${{ startsWith(github.ref, 'refs/tags') }} | ||
echo "is_master =" $is_master | ||
echo "is_tag =" $is_tag | ||
branch=(`[[ $is_master == 'true' || $is_tag == 'true' ]] && echo 'master' || echo 'dev'`) | ||
TOXENV="py$py_version-$branch" | ||
echo $TOXENV | ||
echo "TOXENV=$TOXENV" >> $GITHUB_ENV | ||
- name: Run tox | ||
run: tox | ||
- name: Upload coverage report | ||
uses: codecov/codecov-action@v1 | ||
with: | ||
fail_ci_if_error: true | ||
verbose: true | ||
pre-commit: | ||
name: Run pre-commit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install pip -U | ||
pip install tox | ||
- name: Run pre-commit | ||
env: | ||
TOXENV: pre-commit | ||
run: tox | ||
build: | ||
name: Build package | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install pip -U | ||
pip install tox | ||
- name: Build | ||
env: | ||
TOXENV: build | ||
run: tox | ||
check-version: | ||
name: Check version | ||
# only for PRs in master | ||
if: ${{ github.base_ref == 'master' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Check version | ||
run: | | ||
git clone https://github.com/${{ github.repository }}.git ${{ github.repository }} | ||
cd ${{ github.repository }} | ||
git checkout -qf ${{ github.head_ref }} | ||
! git diff --exit-code --quiet origin/master version.txt | ||
deploy-to-test-pypi: | ||
needs: [tests, pre-commit, build] | ||
if: ${{ github.ref == 'refs/heads/dev' && github.event_name == 'push' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install pip -U | ||
pip install tox | ||
- name: Add id to a package version | ||
run: sed -i -E "s/^([0-9]+\.[0-9]+\.[0-9]+)$/\1.${{ github.run_number }}/" version.txt | ||
- name: Build | ||
env: | ||
TOXENV: build | ||
run: tox | ||
- name: Publish | ||
uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.TEST_PYPI_TOKEN }} | ||
repository_url: https://test.pypi.org/legacy/ | ||
create-gh-release: | ||
needs: [tests, pre-commit, build] | ||
if: ${{ github.ref == 'refs/heads/master' && github.event_name == 'push' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install pip -U | ||
pip install tox | ||
- name: Build | ||
env: | ||
TOXENV: build | ||
run: tox | ||
- name: Set envs | ||
run: | | ||
version="$(cat version.txt | tr -d ' \t\n\r')" | ||
repo_owner=${{ github.repository }} | ||
index=`expr index "$repo_owner" /` | ||
repo=${repo_owner:index} | ||
echo "TAG=$version" >> $GITHUB_ENV | ||
echo "REPO=$repo" >> $GITHUB_ENV | ||
- name: Create GitHub release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
artifacts: "dist/*" | ||
draft: true | ||
name: ${{ env.REPO }} ${{ env.TAG }} | ||
tag: ${{ env.TAG }} | ||
commit: master | ||
deploy-to-pypi: | ||
needs: [tests, pre-commit, build] | ||
if: startsWith(github.ref, 'refs/tags/') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
- name: Set up Python 3.7 | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.7 | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install pip -U | ||
pip install tox | ||
- name: Build | ||
env: | ||
TOXENV: build | ||
run: tox | ||
- name: Publish | ||
uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,8 @@ | ||
include AUTHORS.rst | ||
include CONTRIBUTING.rst | ||
include HISTORY.rst | ||
include LICENSE | ||
include README.rst | ||
include requirements.txt | ||
include test_requirements.txt | ||
include *.txt | ||
|
||
recursive-include tests * | ||
recursive-include shellfoundry/data * | ||
recursive-exclude * __pycache__ | ||
recursive-exclude * *.py[co] | ||
|
||
recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
Sphinx==1.3.1 | ||
pre-commit | ||
tox | ||
-r test_requirements.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
requests | ||
cookiecutter==1.6.0 | ||
click==6.7 | ||
cookiecutter~=1.7.2 | ||
click~=7.1.2 | ||
pyyaml | ||
terminaltables | ||
cloudshell-rest-api>=8.2.3.1 | ||
colorama | ||
giturlparse.py | ||
ruamel.yaml | ||
cryptography | ||
cryptography |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.