aboutsummaryrefslogtreecommitdiff
path: root/setuptools/tests/test_build_py.py
blob: cc701ae67fe9d8d7f18ba2ebf8db3ba1a544866f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import os

import pytest

from setuptools.dist import Distribution


@pytest.yield_fixture
def tmpdir_as_cwd(tmpdir):
    with tmpdir.as_cwd():
        yield tmpdir


def test_directories_in_package_data_glob(tmpdir_as_cwd):
    """
    Directories matching the glob in package_data should
    not be included in the package data.

    Regression test for #261.
    """
    dist = Distribution(dict(
        script_name='setup.py',
        script_args=['build_py'],
        packages=[''],
        name='foo',
        package_data={'': ['path/*']},
    ))
    os.makedirs('path/subpath')
    dist.parse_command_line()
    dist.run_commands()