Skip to content

Commit 0fe1bc8

Browse files
committed
Updae gitignore
1 parent ba1319b commit 0fe1bc8

3 files changed

Lines changed: 16 additions & 2 deletions

File tree

.coveragerc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[run]
2+
omit =
3+
*/tests/*
4+
5+
[report]
6+
fail_under = 0
7+
show_missing = true
8+
skip_covered = true
9+
exclude_lines =
10+
pragma: no cover
11+
def test():
12+
if __name__ == .__main__.:
13+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ develop-eggs
1818
lib
1919
lib64
2020
__pycache__
21+
.cache
2122

2223
# Installer logs
2324
pip-log.txt

circle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ machine:
88
PY_VERSIONS: "3.5 3.4 2.7"
99
# Environment variables used by astropy helpers
1010
TRAVIS_OS_NAME: "linux"
11-
CONDA_DEPENDENCIES: "nose pytest spyder"
11+
CONDA_DEPENDENCIES: "lxml nose pytest spyder"
1212
PIP_DEPENDENCIES: "coveralls pytest-qt"
1313

1414
dependencies:
@@ -27,7 +27,7 @@ dependencies:
2727
test:
2828
override:
2929
# Check style
30-
- export PATH="$HOME/miniconda/bin:$PATH" && source activate test && ciocheck spyder_unittest ----disable-tests: # note the colon
30+
- export PATH="$HOME/miniconda/bin:$PATH" && source activate test && ciocheck spyder_unittest --disable-tests: # note the colon
3131
parallel: true
3232
# Check PyQt5
3333
- export PATH="$HOME/miniconda/bin:$PATH" && source activate test && conda install qt=5.* pyqt=5.* && ciocheck spyder_unittest --disable-linters --disable-formatters: # note the colon

0 commit comments

Comments
 (0)