Skip to content

Commit

Permalink
Merge pull request #52 from chakki-works/enhancement/redesign
Browse files Browse the repository at this point in the history
Add scheme classes to implement strict analysis
  • Loading branch information
Hironsan authored Oct 5, 2020
2 parents 26b3bab + 448a1e4 commit 6367a00
Show file tree
Hide file tree
Showing 7 changed files with 1,108 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[flake8]
max-line-length = 120
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Python application

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv install --dev --skip-lock
- name: Test with pytest
run: |
pipenv run test
22 changes: 22 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
pytest = "*"
autopep8 = "*"
flake8 = "*"
pytest-cov = "*"
isort = "*"

[packages]
numpy = "*"

[requires]
python_version = "3.8"

[scripts]
isort = "isort . -c"
test = "pytest tests/test_scheme.py --cov=seqeval --cov-report=term-missing -vv"
flake8 = "flake8 seqeval --ignore=F401,E741"
218 changes: 218 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions requirements.txt

This file was deleted.

Loading

0 comments on commit 6367a00

Please sign in to comment.