Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Oct 1, 2020
1 parent 5bc3f22 commit afe65f9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,11 @@ install:
python:
- '2.7'
- '3.6'
- '3.8'
- 'nightly'

branches:
only:
- master

script: ./tcipylint
script: ./tcipylint
1 change: 0 additions & 1 deletion cime_config/buildnml
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,6 @@ def buildnml(case, caseroot, component):
shutil.copy(filename, rundir)

# copy fd_cesm.yaml to rundir
cimeroot = case.get_value("CIMEROOT")
fd_dir = os.path.join(os.path.dirname(__file__),os.pardir,"mediator")
coupling_mode = case.get_value('COUPLING_MODE')
if coupling_mode == 'cesm':
Expand Down
2 changes: 1 addition & 1 deletion tcipylint
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ args="--disable=I,C,R,logging-not-lazy,wildcard-import,unused-wildcard-import,fi
failed=0
for file in cime_config/buildexe cime_config/buildnml cime_config/runseq/*
do
pylint $args $file || failed=$failed+1
pylint $args $file || failed=$(( failed + 1 ))
done
exit $failed

0 comments on commit afe65f9

Please sign in to comment.