Skip to content

Commit

Permalink
Merge branch '1.10.x' of https://github.com/pantsbuild/pants into 1.10.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ity committed Sep 26, 2018
2 parents ee19fdf + 22004eb commit 259f871
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/python/pants/backend/python/tasks/pytest_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

from __future__ import absolute_import, division, print_function, unicode_literals

import configparser
import itertools
import json
import os
Expand All @@ -18,6 +17,8 @@
from io import StringIO
from textwrap import dedent

from backports import configparser

from pants.backend.python.targets.python_tests import PythonTests
from pants.backend.python.tasks.gather_sources import GatherSources
from pants.backend.python.tasks.pytest_prep import PytestPrep
Expand Down
2 changes: 1 addition & 1 deletion src/python/pants/option/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

from __future__ import absolute_import, division, print_function, unicode_literals

import configparser
import getpass
import io
import itertools
Expand All @@ -13,6 +12,7 @@
from contextlib import contextmanager

import six
from backports import configparser
from twitter.common.collections import OrderedSet

from pants.base.build_environment import get_buildroot, get_pants_cachedir, get_pants_configdir
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from textwrap import dedent

import coverage
from six.moves import configparser
from backports import configparser

from pants.backend.python.tasks.gather_sources import GatherSources
from pants.backend.python.tasks.pytest_prep import PytestPrep
Expand Down
2 changes: 1 addition & 1 deletion tests/python/pants_test/pants_run_integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

from __future__ import absolute_import, division, print_function, unicode_literals

import configparser
import glob
import os
import shutil
Expand All @@ -14,6 +13,7 @@
from operator import eq, ne
from threading import Lock

from backports import configparser
from colors import strip_color

from pants.base.build_environment import get_buildroot
Expand Down

0 comments on commit 259f871

Please sign in to comment.