-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from cclauss/pre-release
Cleanup to prepare for a release
- Loading branch information
Showing
12 changed files
with
111 additions
and
143 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ verify_ssl = true | |
name = "pypi" | ||
|
||
[packages] | ||
yamlish = "*" | ||
junit-xml = "*" | ||
yamlish = "*" | ||
|
||
[dev-packages] | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
A utility that converts [TAP version 13](https://testanything.org/) to [JUnit](https://junit.org/junit5/). That's it. | ||
|
||
The syntax expected is currently pretty custom-tailored for use at https://ci.nodejs.org. | ||
|
||
Improvements welcome. | ||
|
||
To install: | ||
|
||
`pip install tap2junit` | ||
|
||
To run: | ||
|
||
`tap2junit -i file.tap -o file.xml` | ||
|
||
Suggested code hygiene: | ||
``` | ||
$ flake8 --max-line-length=88 . | ||
$ isort -rc . | ||
$ black . | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,35 @@ | ||
# coding: utf-8 | ||
|
||
# Always prefer setuptools over distutils | ||
from setuptools import setup | ||
# To use a consistent encoding | ||
from codecs import open | ||
from os import path | ||
|
||
import setuptools | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
# Get the long description from the README file | ||
with open(path.join(here, 'README.rst'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
with open(path.join(here, "README.md")) as in_file: | ||
long_description = in_file.read() | ||
|
||
setup( | ||
name='tap2junit', | ||
version='0.1.5', | ||
description='Tap13 to jUnit', | ||
setuptools.setup( | ||
name="tap2junit", | ||
version="0.1.5", | ||
description="Tap13 to jUnit", | ||
long_description=long_description, | ||
url='https://github.com/jbergstroem/tap2junit', | ||
author='Johan Bergström', | ||
author_email='bugs@bergtroem.nu', | ||
url="https://github.com/nodejs/tap2junit", | ||
author="Node.js contributors", | ||
author_email="cclauss@me.com", | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Build Tools', | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 3', | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Topic :: Software Development :: Build Tools", | ||
], | ||
keywords='tap13 junit', | ||
packages=['tap2junit'], | ||
install_requires=['yamlish', 'junit-xml'], | ||
entry_points={ | ||
'console_scripts': [ | ||
'tap2junit = tap2junit.__main__:main', | ||
], | ||
}, | ||
keywords="tap13 junit", | ||
packages=["tap2junit"], | ||
install_requires=["junit-xml", "yamlish"], | ||
entry_points={"console_scripts": ["tap2junit = tap2junit.__main__:main"]}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.