Skip to content

Commit

Permalink
added:LICENCE
Browse files Browse the repository at this point in the history
  • Loading branch information
rraadd88 committed Aug 11, 2023
0 parents commit 7c3d45c
Show file tree
Hide file tree
Showing 41 changed files with 9,932 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: build

on:
push:
branches: "*"
pull_request:
branches: "*"

jobs:
build-n-test-n-coverage:
name: Build, test and code coverage
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [3.7, 3.8, 3.9]
env:
OS: ubuntu-latest
PYTHON: "3.7"

steps:
- name: Checkout
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 -e .[test]
pip install tox-gh-actions
pip install papermill testbook
pip install ipykernel;python -m ipykernel install --user --name test
- name: Run the tests
run: tox
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false
80 changes: 80 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
*.pyc
*.ipynb_checkpoints
deps/

docs
#docs/*.rst
#docs/*.py
#docs/_build
#docs/generated
#docs/_static
#docs/_templates
#docs/Makefile

test/*
test_dataset/*
.cache/*
dist/*

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so
*~

# Distribution / packaging
.Python
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# IPython Notebook
.ipynb_checkpoints

6
*.bak
Loading

0 comments on commit 7c3d45c

Please sign in to comment.