Skip to content

Commit f542d72

Browse files
author
sjoshistrats
authored
Merge pull request #2 from sjoshistrats/fix_circlieci_cfg
Update circleci config.yml
2 parents 719df83 + 72c669e commit f542d72

File tree

4 files changed

+17
-20
lines changed

4 files changed

+17
-20
lines changed

.circleci/config.yml

Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,20 @@
1-
# Use the latest 2.1 version of CircleCI pipeline process engine.
2-
# See: https://circleci.com/docs/2.0/configuration-reference
31
version: 2.1
42

5-
# Define a job to be invoked later in a workflow.
6-
# See: https://circleci.com/docs/2.0/configuration-reference/#jobs
73
jobs:
8-
say-hello:
9-
# Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub.
10-
# See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor
4+
build_test:
115
docker:
12-
- image: cimg/base:stable
13-
# Add steps to the job
14-
# See: https://circleci.com/docs/2.0/configuration-reference/#steps
6+
- image: circleci/python:3.6.4
157
steps:
16-
- checkout
8+
- checkout # checkout source code to working directory
179
- run:
18-
name: "Say hello"
19-
command: "echo Hello, World!"
20-
21-
# Invoke jobs via workflows
22-
# See: https://circleci.com/docs/2.0/configuration-reference/#workflows
10+
command: | # Install package
11+
sudo pip install -U pipenv
12+
pipenv install .
13+
- run:
14+
command: | # Run tests
15+
pipenv install pytest
16+
pipenv run pytest python/fastgrouper/test/ -s -vv
2317
workflows:
24-
say-hello-workflow:
18+
build_test:
2519
jobs:
26-
- say-hello
20+
- build_test

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,7 @@
33
.cache
44
grouper.egg-info
55
dist
6-
fastgrouper.egg-info
6+
fastgrouper.egg-info
7+
build
8+
Pipfile
9+
Pipfile.lock

python/fastgrouper/test/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setuptools.setup(
1111
name="fastgrouper",
12-
version="0.1.0",
12+
version="0.1.1",
1313
author="Shreyas Joshi",
1414
author_email="sjoshistrats@gmail.com",
1515
description="A package for applying efficient groupby operations.",

0 commit comments

Comments
 (0)