Skip to content

Commit 886959b

Browse files
Merge pull request #89 from giovannipizzi/release_2.0.0a2
Release 2.0.0 ok seekpath
2 parents 5aa3d04 + 5b777f8 commit 886959b

File tree

1,381 files changed

+1734
-541776
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,381 files changed

+1734
-541776
lines changed

.docker_files/apache_run.sh

Lines changed: 0 additions & 21 deletions
This file was deleted.

.docker_files/create_secret_key.sh

Lines changed: 0 additions & 22 deletions
This file was deleted.

.docker_files/seekpath-apache.conf

Lines changed: 0 additions & 13 deletions
This file was deleted.

.dockerignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

.gitattributes

Lines changed: 0 additions & 9 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
name: Continuous integration
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
precommit:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v1
11+
12+
- name: Set up Python 3.6
13+
uses: actions/setup-python@v1
14+
with:
15+
python-version: 3.6
16+
17+
- name: Install python dependencies
18+
run: |
19+
pip install -r optional-requirements.txt
20+
pip install -e .[dev,bz]
21+
pip freeze
22+
23+
- name: Run pre-commit
24+
run:
25+
pre-commit run --all-files || ( git status --short ; git diff ; exit 1 )
26+
27+
tests:
28+
runs-on: ubuntu-latest
29+
30+
steps:
31+
- uses: actions/checkout@v1
32+
33+
- name: Set up Python 3.6
34+
uses: actions/setup-python@v1
35+
with:
36+
python-version: 3.6
37+
38+
- name: Install python dependencies
39+
run: |
40+
pip install -e .[dev,bz]
41+
pip freeze
42+
43+
- name: Run the tests
44+
run: pytest

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ seekpath.egg-info/
66
.DS_Store
77
.coverage
88
.idea/
9-
.vscode/
9+
.vscode/

.htaccess

Lines changed: 0 additions & 1 deletion
This file was deleted.

.pre-commit-config.yaml

Lines changed: 12 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,18 @@
1-
# yet another python formatter
2-
- repo: git://github.com/pre-commit/mirrors-yapf
3-
rev: v0.29.0
1+
- repo: https://github.com/pre-commit/pre-commit-hooks
2+
rev: v2.2.3
43
hooks:
5-
- id: yapf
6-
language: system
7-
files: >-
8-
(?x)^(
9-
seekpath/.*.py|
10-
webservice/.*.py|
11-
docs/source/conf.py|
12-
run_tests.py|
13-
setup.py
14-
)$
4+
- id: trailing-whitespace
155

16-
# prospector: collection of linters
17-
#- repo: git://github.com/guykisel/prospector-mirror
18-
# rev: b27f281eb9398fc8504415d7fbdabf119ea8c5e1
6+
- repo: https://github.com/ambv/black
7+
rev: 19.10b0
8+
hooks:
9+
- id: black
10+
11+
#- repo: local
1912
# hooks:
2013
# - id: prospector
2114
# language: system
2215
# types: [file, python]
23-
# files: >-
24-
# (?x)^(
25-
# seekpath/.*.py|
26-
# webservice/.*.py|
27-
# docs/source/conf.py|
28-
# run_tests.py|
29-
# setup.py
30-
# )$
31-
32-
16+
# name: prospector
17+
# description: "This hook runs Prospector: https://github.com/landscapeio/prospector"
18+
# entry: prospector

.prospector.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
mccabe:
2+
run: false

0 commit comments

Comments
 (0)