Skip to content
This repository has been archived by the owner on Nov 14, 2019. It is now read-only.

Commit

Permalink
Merge 5be7942 into c8ed53c
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwhite committed Dec 6, 2018
2 parents c8ed53c + 5be7942 commit 8873278
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,7 @@ language: python
python:
- "2.7"
- "3.6"
install: pip install tox-travis
install: pip install tox-travis coveralls
script: tox
after_success:
- coveralls
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Zappy is for distributed processing of chunked NumPy arrays on engines like [Pywren], Apache Spark, and Apache Beam.

[![Build Status](https://travis-ci.org/lasersonlab/zappy.svg?branch=master)](https://travis-ci.org/lasersonlab/zappy)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)

The `zappy.base` module defines a `ZappyArray` class that exposes the same interface as `numpy.ndarray`, and which
is backed by distributed storage and processing. The array is broken into chunks, and is typically loaded from [Zarr],
Expand Down
2 changes: 2 additions & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
coveralls
future
numpy
pyspark
pytest
pytest-cov
tox
zarr
Empty file added tests/__init__.py
Empty file.
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ envlist = py27,py36
deps =
py27: apache-beam==2.5.0
py27,py36: -rrequirements_dev.txt
commands = pytest
commands = pytest -v --cov=zappy tests
passenv = TRAVIS TRAVIS_*

0 comments on commit 8873278

Please sign in to comment.