Skip to content

Commit

Permalink
Test Coveralls (#27)
Browse files Browse the repository at this point in the history
* refactor pandas like utils

* fix groupby apply

* update groupby apply

* test upgrade

* remove dataframes

* remove function utils

* test coverage

* update coveralls

* update

* update
  • Loading branch information
Han Wang committed May 17, 2020
1 parent 84d1f01 commit 02039f7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 191 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,9 @@ jobs:
run: make devenv
- name: Test
run: make test
- name: Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
pip install coveralls
coveralls
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# Triad

[![Coverage Status](https://coveralls.io/repos/github/fugue-project/triad/badge.svg)](https://coveralls.io/github/fugue-project/triad)

A collection of python utils functions
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

VERSION = "0.2.9"
VERSION = "0.3.0"

with open("README.md") as f:
LONG_DESCRIPTION = f.read()
Expand All @@ -9,14 +9,14 @@
name="triad",
version=VERSION,
packages=find_packages(),
description="A collection of python utils",
description="A collection of python utils for Fugue projects",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
license="MIT",
author="Han Wang",
author_email="goodwanghan@gmail.com",
keywords="util utils utility utilities",
url="http://github.com/goodwanghan/triad",
url="http://github.com/fugue-project/triad",
install_requires=["pandas", "six", "ciso8601", "pyarrow", "fs"],
extras_require={},
classifiers=[
Expand All @@ -25,12 +25,10 @@
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
],
python_requires=">=3",
python_requires=">=3.6",
)
100 changes: 0 additions & 100 deletions tests/utils/test_function.py

This file was deleted.

85 changes: 0 additions & 85 deletions triad/utils/function.py

This file was deleted.

0 comments on commit 02039f7

Please sign in to comment.