Skip to content

Commit 6b0d921

Browse files
authoredJun 27, 2021
Merge pull request magpylib#340 from magpylib/development
Development
2 parents 947678f + f1f41de commit 6b0d921

File tree

174 files changed

+9652
-8554
lines changed

Some content is hidden

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

174 files changed

+9652
-8554
lines changed
 

‎.circleci/config.yml

+11-4
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,22 @@ workflows:
1818
jobs:
1919
build:
2020
docker:
21-
- image: python:3
21+
- image: python:3.8
2222
steps:
2323
- checkout
2424
- run:
25-
name: Install Testing Env
26-
command: mkdir test-results && pip install tox
25+
name: Install local magpylib
26+
command: pip install .
27+
- run:
28+
name: Set up testing tools and environment
29+
command: mkdir test-results && pip install tox && pip install pylint
30+
- run:
31+
name: Run pylint test
32+
command: pylint --rcfile='./.pylintrc' magpylib
2733
- run:
28-
name: Run Test Suite
34+
name: Run code test coverage suite
2935
command: tox
36+
3037
deploy:
3138
docker:
3239
- image: python:3

‎.gitignore

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
# Created by https://www.gitignore.io/api/python
32
# Edit at https://www.gitignore.io/?templates=python
43

@@ -122,8 +121,4 @@ dmypy.json
122121
.pyre/
123122

124123
### Python Patch ###
125-
.venv/
126-
127-
128-
129-
# End of https://www.gitignore.io/api/python
124+
.venv/

0 commit comments

Comments
 (0)
Please sign in to comment.