oracc / pyoracc

Python tools for working with ORACC
GNU General Public License v3.0
12 stars 10 forks source link

License #64

Closed raquelalegre closed 8 years ago

raquelalegre commented 8 years ago

Added GPL license text in all Python files following a simple bash script:

for f in `find . -name "*.py" ! -name "__init__.py"`
do  
  if ! grep -q Copyright $f
     then   
         cat copyright.txt $f > $f.new && mv $f.new $f 
  fi 
done
codecov-io commented 8 years ago

Current coverage is 95.86%

Merging #64 into master will not change coverage

@@             master        #64   diff @@
==========================================
  Files            20         20          
  Lines           823        823          
  Methods           0          0          
  Messages          0          0          
  Branches          0          0          
==========================================
  Hits            789        789          
  Misses           34         34          
  Partials          0          0          

Sunburst

Powered by Codecov. Last updated by 935b612...0244edc