Notest - запустить все тесты в подкаталогах - PullRequest
0 голосов
/ 01 ноября 2018

Я запускаю команду nosetest ниже, но она запускает тесты только в первой папке, у меня есть дополнительные тесты в подкаталогах. Как отредактировать команду для запуска всех следующих тестов во всех подкаталогах указанной папки?

nosetests -s -v --ckan --with-pylons=test-core.ini ckan/tests/legacy/*

Вот основная структура тестов в следующем каталоге

https://github.com/ckan/ckan/tree/ckan-2.7.3/ckan/tests/legacy

Ответы [ 2 ]

0 голосов
/ 19 ноября 2018

Вы должны выполнить все тесты в каталоге, включая подкаталоги, если вы выполняете тесты как:

nosetests --reset-db --nologcapture --with-pylons=test-core.ini ckan.tests.legacy -s -v

Надеюсь, это поможет

0 голосов
/ 01 ноября 2018

Вы можете написать скрипт, который будет генерировать все необходимые пути.

Я использую что-то как:

#coding: utf-8
import os
import logging
log = logging.getLogger()
skip_list = []

def get_test_files(cur_path, test_files = []):
    """ Find all files that started with test_ """
    cur_dir_content = os.listdir(cur_path)
    for i in cur_dir_content:
        full_path = os.path.join(cur_path, i)
        if os.path.islink(full_path):
            continue
        if os.path.isfile(full_path) and is_file_test(full_path):
            test_files.append(full_path)
        elif os.path.isdir(full_path):
            get_test_files(full_path, test_files)
    return test_files

def is_file_test(full_path):
    """ Check if file is test"""
    file_name, file_ext = os.path.splitext(os.path.basename(full_path))
    if file_name[:5] == "test_" and file_ext == ".py":
        if is_in_skip(full_path):
            log.info("FILE: %s ... SKIP", full_path)
            return False
        return True
    return False

def is_in_skip(full_path):
    for i in skip_list:
        if full_path.find(i) >= 0:
            return True
    return False

def execute_all_with_nosetests(path_list):
    """ Test with nosetests.
    """
    #compute paths
    cur_dir = os.getcwd()
    paths = map(lambda x: os.path.abspath(x), path_list)
    relpath = "INSERT YOUR PATH"
    paths = map(lambda x: os.path.relpath(x, relpath), paths)
    paths = " ".join(paths)
    os.chdir("INSERT TEST RUN FOLDER")
    cmd = "nosetests -s -v --ckan --with-pylons=test-core.ini " + paths
    os.system(cmd)
    os.chdir(cur_dir)

if __name__ == "__main__":
    test_list = get_test_files("INSERT_BASE_PATH")
    execute_all_with_nosetests(test_list)

Замените строки "INSERT" в ваших собственных папках. Также необходимо исправить функцию execute_all_with_nosetests. Я не запускаю его, но это индекс моего тестового сценария.

...