Skip to content
main
Switch branches/tags
Code

Latest commit

Currently, JUnit XML is only produced and attached to `TestResult`s if the `--junit-xml-dir` option is set. But the XML is cheap to generate, and adds useful information for workunit consumers.

* Lift the `--junit-xml-dir` flag onto the `[test]` scope as `--xml-dir`, and deprecate the previous location.
* Generate junit XML regardless of the `--xml-dir` flag value, but only materialize it in the workspace if the flag is set.
* Add support for capturing the junit XML produced by JUnit.
537b2e7

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time

Pants Build System

Pants is a scalable build system for monorepos: codebases containing multiple projects, often using multiple programming languages and frameworks, in a single unified code repository.

Some noteworthy features include:

  • Explicit dependency modeling.
  • Fine-grained invalidation.
  • Shared result caching.
  • Concurrent execution.
  • Remote execution.
  • Unified interface for multiple tools and languages.
  • Extensibility and customizability via a plugin API.

Documentation: www.pantsbuild.org.

We release to PyPI version license

Requirements

To run Pants, you need:

  • Linux or macOS.
  • Python 3.7+ discoverable on your PATH.
  • A C compiler, system headers and Python headers (to compile native Python modules).
  • Internet access (so that Pants can fully bootstrap itself).