Skip to content
This repository was archived by the owner on May 14, 2020. It is now read-only.

Commit 188cce4

Browse files
committed
Merge branch 'dev'
2 parents 323b946 + e6b58cc commit 188cce4

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.gitlab-ci.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
image: averhlv/browseapi:latest
2+
3+
stages:
4+
- test
5+
6+
tests:
7+
stage: test
8+
script:
9+
- bash ./tests.sh

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Browse API client
22

3+
![coverage](https://img.shields.io/codecov/c/github/AverHLV/browseapi.svg) ![build_status](https://img.shields.io/gitlab/pipeline/AverHLV/browseapi/dev.svg) [![Documentation Status](https://readthedocs.org/projects/browseapi/badge/?version=latest)](https://browseapi.readthedocs.io/en/latest/?badge=latest)
4+
35
This package is a Python client for eBay Browse API.
46
It is asynchronous and designed to send a large number of requests by
57
one function call.
@@ -53,4 +55,4 @@ then run a command from the parent browseapi directory:
5355

5456
Documentation built with [mkdocs](https://www.mkdocs.org/).
5557

56-
link
58+
[browseapi.readthedocs.io](https://browseapi.readthedocs.io/en/latest/)

tests.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/bin/bash
22

3+
echo `echo $SECRET | base64 --decode` > browseapi/tests/secret.json
4+
35
coverage run -m unittest browseapi.tests.test_client
46
coverage report
5-
67
codecov -t $CODECOV_TOKEN

0 commit comments

Comments
 (0)