Skip to content

Commit

Permalink
Merge pull request #454 from ReactionMechanismGenerator/job19
Browse files Browse the repository at this point in the history
add clean and PHONY to makefile
  • Loading branch information
alongd committed Jun 2, 2021
2 parents adacb5e + 2a33d75 commit d5a10b1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
#
################################################################################

.PHONY : clean gcn gcn-cpu test test-unittests

test test-unittests:
nosetests --nocapture --nologcapture --all-modules --verbose --with-coverage --cover-inclusive --cover-package=arc --cover-erase --cover-html --exe --cover-html-dir=testing/coverage

Expand All @@ -12,3 +14,9 @@ gcn:

gcn-cpu:
bash devtools/install_gcn_cpu.sh

clean:
find -type d -name __pycache__ -exec rm -rf {} +
rm -rf testing
rm -rf arc/testing/gcn_tst
rm -f .coverage

0 comments on commit d5a10b1

Please sign in to comment.