Skip to content
Snippets Groups Projects
test_fastqc.py 308 B
Newer Older
Gervaise Henry's avatar
Gervaise Henry committed
#!/usr/bin/env python3

import pytest
import pandas as pd
from io import StringIO
import os

test_output_path = os.path.dirname(os.path.abspath(__file__)) + \
    '/../../'

Gervaise Henry's avatar
Gervaise Henry committed

@pytest.mark.fastqc
Gervaise Henry's avatar
Gervaise Henry committed
def test_fastqc():
    assert os.path.exists(os.path.join(
        test_output_path, 'Q-Y5F6_1M.R1_fastqc.zip'))