-
-
Notifications
You must be signed in to change notification settings - Fork 31
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 #100 from sepandhaghighi/dev
Version 1.1
- Loading branch information
Showing
22 changed files
with
581 additions
and
372 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
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,9 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: pip | ||
directory: "/" | ||
schedule: | ||
interval: weekly | ||
time: "01:30" | ||
open-pull-requests-limit: 10 | ||
target-branch: dev |
File renamed without changes.
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,53 @@ | ||
# This workflow will install Python dependencies, run tests with a variety of Python versions | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | ||
|
||
name: CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, windows-latest, macOS-latest] | ||
python-version: [3.5, 3.6, 3.7, 3.8, 3.9] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Installation | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements.txt | ||
python setup.py install | ||
- name: First test | ||
run: | | ||
python -m pyrgg test | ||
- name: Test requirements Installation | ||
run: | | ||
python otherfile/requirements-splitter.py | ||
pip install --upgrade --upgrade-strategy=only-if-needed -r test-requirements.txt | ||
- name: Test with pytest | ||
run: | | ||
python -m pytest test --cov=pyrgg --cov-report=term | ||
- name: Version check | ||
run: | | ||
python otherfile/version_check.py | ||
if: matrix.python-version == 3.7 | ||
- name: Other tests | ||
run: | | ||
python -m vulture pyrgg/ otherfile/ setup.py --min-confidence 65 --exclude=__init__.py --sort-by-size | ||
python -m bandit -r pyrgg -s B311,B403 | ||
python -m pydocstyle -v --match-dir=pyrgg | ||
if: matrix.python-version == 3.7 | ||
- name: Codecov | ||
run: | | ||
codecov | ||
if: matrix.python-version == 3.7 && matrix.os == 'ubuntu-latest' | ||
- name: cProfile | ||
run: | | ||
python -m cProfile -s cumtime otherfile/pyrgg_profile.py |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.