Skip to content

Commit

Permalink
Fixed packagename in travis file for pep8 check.
Browse files Browse the repository at this point in the history
  • Loading branch information
Curtis McCully committed Mar 16, 2018
1 parent 18711c8 commit b65b14c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ matrix:
# Do a coverage test.
- os: linux
env: SETUP_CMD='test --coverage'
CFLAGS='-ftest-coverage

# Check for sphinx doc build warnings - we do this first because it
# may run for a long time
Expand Down Expand Up @@ -113,7 +114,7 @@ matrix:

# Do a PEP8 test with pycodestyle
- os: linux
env: MAIN_CMD='pycodestyle packagename --count' SETUP_CMD=''
env: MAIN_CMD='pycodestyle astroscrappy --count' SETUP_CMD=''

allow_failures:
# Do a PEP8 test with pycodestyle
Expand Down
3 changes: 2 additions & 1 deletion astroscrappy/astroscrappy.pyx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst
# cython: profile=True, boundscheck=False, nonecheck=False, wraparound=False
# cython: cdivision=True
# cython: cdivision=True, cython: linetrace=True
# distutils: define_macros=CYTHON_TRACE=1
from __future__ import (absolute_import, division, print_function,
unicode_literals)
"""
Expand Down
3 changes: 2 additions & 1 deletion astroscrappy/utils/image_utils.pyx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst
# cython: profile=True, boundscheck=False, nonecheck=False, wraparound=False
# cython: cdivision=True
# cython: cdivision=True, cython: linetrace=True
# distutils: define_macros=CYTHON_TRACE=1
from __future__ import (absolute_import, division, print_function,
unicode_literals)
"""
Expand Down
3 changes: 2 additions & 1 deletion astroscrappy/utils/median_utils.pyx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Licensed under a 3-clause BSD style license - see LICENSE.rst
# cython: profile=True, boundscheck=False, nonecheck=False, wraparound=False
# cython: cdivision=True
# cython: cdivision=True, linetrace=True
# distutils: define_macros=CYTHON_TRACE=1
from __future__ import (absolute_import, division, print_function,
unicode_literals)
"""
Expand Down

0 comments on commit b65b14c

Please sign in to comment.