Skip to content

Commit 59a6c36

Browse files
committed
Re-enabling more tests
1 parent add824b commit 59a6c36

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ def run(self):
4444
os.chmod(source_path, st.st_mode | stat.S_IEXEC)
4545
# Copy to scripts directory
4646
shutil.copy2(source_path, target_path)
47+
sys.stderr.write(f"Copied {source_path} to {target_path}\n")
4748

4849
setup(
4950
packages=find_packages(),

tests/translators/test_translators.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def test_dask_translator(self) -> None:
135135

136136

137137
@pytest.mark.unit
138-
@pytest.mark.skip(reason="tmp")
138+
# @pytest.mark.skip(reason="tmp")
139139
def test_parsl_translator(self) -> None:
140140

141141
# Create workflow benchmark
@@ -179,7 +179,7 @@ def test_parsl_translator(self) -> None:
179179
assert(num_completed_tasks == num_tasks)
180180

181181
@pytest.mark.unit
182-
@pytest.mark.skip(reason="tmp")
182+
# @pytest.mark.skip(reason="tmp")
183183
def test_nextflow_translator(self) -> None:
184184

185185
# Create workflow benchmark

0 commit comments

Comments
 (0)