Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Port process #6193

Merged
merged 2 commits into from
Jul 21, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/python/pants/process/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

python_library(
dependencies = [
'3rdparty/python:future',
'3rdparty/python:fasteners',
'3rdparty/python:psutil',
'src/python/pants/util:dirutil',
Expand Down
1 change: 1 addition & 0 deletions src/python/pants/process/xargs.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from __future__ import absolute_import, division, print_function, unicode_literals

import errno
from builtins import object

from pants.util.process_handler import subprocess

Expand Down
1 change: 1 addition & 0 deletions tests/python/pants_test/process/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

python_tests(
dependencies = [
'3rdparty/python:future',
'3rdparty/python:mock',
'3rdparty/python:six',
'src/python/pants/process',
Expand Down
1 change: 1 addition & 0 deletions tests/python/pants_test/process/test_lock.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import shutil
import tempfile
import unittest
from builtins import str
from multiprocessing import Manager, Process
from threading import Thread

Expand Down