8000 skip test of export for unit tests. Add coverage badge · illusional/python-cwlgen@310c726 · GitHub
[go: up one dir, main page]

Skip to content

Commit 310c726

Browse files
committed
skip test of export for unit tests. Add coverage badge
1 parent f9b7b8f commit 310c726

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# pycwl
22

33
[![Build Status](https://travis-ci.org/khillion/pycwl.svg?branch=master)](https://travis-ci.org/khillion/pycwl)
4+
[![codecov](https://codecov.io/gh/khillion/pycwl/branch/master/graph/badge.svg)](https://codecov.io/gh/khillion/pycwl)
5+
46

57
pycwl is a python library for the manipulation and generation of CWL tool.
68

run_test.sh

Lines changed: 0 additions & 10 deletions
This file was deleted.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
install_requires=['six', 'ru 8000 amel.yaml'],
1515
packages=["pycwl"],
1616
classifiers=[
17-
'Development Status :: 2 - Pre-Alpha',
17+
'Development Status :: 3 - Alpha',
1818
'Topic :: Scientific/Engineering :: Bio-Informatics',
1919
'Intended Audience :: Developers',
2020
'Intended Audience :: Science/Research',

test/test_unit_pycwl.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ def test_init(self):
4141
self.assertListEqual(self.cwl.outputs, [])
4242
self.assertIsNone(self.cwl.doc)
4343

44+
'''
4445
def test_export(self):
4546
tmp_file = 'test_export.tmp'
4647
expected_file = os.path.dirname(__file__) + '/test_export.cwl'
@@ -63,7 +64,7 @@ def test_full_export(self):
6364
self.assertTrue(filecmp.cmp(expected_file, tmp_file))
6465
finally:
6566
os.remove(tmp_file)
66-
67+
'''
6768

6869
class TestParameter(unittest.TestCase):
6970

0 commit comments

Comments
 (0)
0