Skip to content
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
30 changes: 12 additions & 18 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,20 @@
# Use the latest 2.1 version of CircleCI pipeline process engine.
# See: https://circleci.com/docs/2.0/configuration-reference
version: 2.1

# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
jobs:
say-hello:
# Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
# See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
build_test:
docker:
- image: cimg/base:stable
# Add steps to the job
# See: https://circleci.com/docs/2.0/configuration-reference/#steps
- image: circleci/python:3.6.4
steps:
- checkout
- checkout # checkout source code to working directory
- run:
name: "Say hello"
command: "echo Hello, World!"

# Invoke jobs via workflows
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
command: | # Install package
sudo pip install -U pipenv
pipenv install .
- run:
command: | # Run tests
pipenv install pytest
pipenv run pytest python/fastgrouper/test/ -s -vv
workflows:
say-hello-workflow:
build_test:
jobs:
- say-hello
- build_test
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
.cache
grouper.egg-info
dist
fastgrouper.egg-info
fastgrouper.egg-info
build
Pipfile
Pipfile.lock
Empty file.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setuptools.setup(
name="fastgrouper",
version="0.1.0",
version="0.1.1",
author="Shreyas Joshi",
author_email="sjoshistrats@gmail.com",
description="A package for applying efficient groupby operations.",
Expand Down