-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from rajivsarvepalli/1-add-release-ci
Added testing for 0.1.x branch, Switched to Python 3.7+ for main branch
- Loading branch information
Showing
3 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
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,27 @@ | ||
name: 0.1.x-Tests | ||
on: | ||
push: | ||
branches: | ||
- 0.1.x | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 5 | ||
matrix: | ||
python-version: [2.7, 3.6, 3.7] | ||
|
||
steps: | ||
- 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 --upgrade pip | ||
pip install virtualenv==15.2 | ||
pip install tox==3.12.1 tox-gh-actions | ||
pip install poetry==1.1.4 | ||
- name: Test with tox | ||
run: tox |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ repository = "https://github.com/rajivsarvepalli/mock-alchemy" | |
authors = ["Rajiv Sarvepalli <[email protected]>", "Miroslav Shubernetskiy <[email protected]>", "Serkan Hoscai <[email protected]"] | ||
readme = "README.rst" | ||
keywords = ["sqlalchemy mock testing", "sqlalchemy mock", "mock sqlalchemy"] | ||
documentation = "https://mockalchemy.readthedocs.io" | ||
documentation = "https://mock-alchemy.readthedocs.io" | ||
classifiers=[ | ||
"Intended Audience :: Developers", | ||
"Natural Language :: English", | ||
|