Find a file
derAnfaenger 3c2e6e0556 travis: Install codecodv in the correct place.
Before this commit, codecov got installed for each test job,
but was only needed *after* all jobs had passed: in after_success.
This lead to codecov silently failing, as it was not installed when
it was actually needed.
2017-09-05 15:33:44 +02:00
tools provision: Add color formatting to success output. 2017-09-01 09:34:42 -07:00
zulip python-zulip-api: Upgrade versions (0.3.2 -> 0.3.3). 2017-09-01 23:10:12 -02:30
zulip_bots python-zulip-api: Upgrade versions (0.3.2 -> 0.3.3). 2017-09-01 23:10:12 -02:30
zulip_botserver python-zulip-api: Upgrade versions (0.3.2 -> 0.3.3). 2017-09-01 23:10:12 -02:30
.codecov.yml testing: Add code test coverage reporting. 2017-08-21 15:03:47 -07:00
.gitignore provision: Add venvs to .gitignore. 2017-08-25 09:31:01 +02:00
.travis.yml travis: Install codecodv in the correct place. 2017-09-05 15:33:44 +02:00
README.md README.md: Update command for running botserver tests. 2017-09-04 14:33:09 +02:00
requirements.txt requirements: Add coverage. 2017-08-23 16:41:02 +02:00

Zulip API

Build status Coverage status

This repository contains the source code for Zulip's PyPI packages:

Development

  1. Fork and clone the Git repo: git clone https://github.com/<your_username>/python-zulip-api.git

  2. Make sure you have pip and virtualenv installed.

  3. cd into the repository cloned earlier: cd python-zulip-api

  4. Run:

    ./tools/provision
    

    This sets up a virtual Python environment in zulip-api-py<your_python_version>-venv, where <your_python_version> is your default version of Python. If you would like to specify a different Python version, run

    ./tools/provision -p <path_to_your_python_version>`
    
  5. You should now be able to run all the tests within this virtualenv.

Running tests

You can run the tests for the zulip_bots package by typing:

./tools/test-bots

You can run the tests for the zulip_botserver by typing:

./tools/test-botserver

To run the linter, type:

./tools/lint