File tree Expand file tree Collapse file tree 5 files changed +22
-4
lines changed Expand file tree Collapse file tree 5 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 44* .pypirc
55releaseguide.md
66venv /
7- .idea /
7+ .idea /
8+ .coverage
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ cache: pip
77before_install :
88 - sudo apt-get install libgnutls28-dev
99install :
10- - pip install requests pycurl mock coveralls pylint pycodestyle
10+ - make install
1111script :
12- - coverage run -m unittest discover -s test -p '*Test.py'
12+ - make coverage
1313 - pycodestyle -v
1414after_success :
1515 - coveralls
Original file line number Diff line number Diff line change 1+ install :
2+ @pip install requests pycurl mock coveralls pylint pycodestyle
3+
4+ tests :
5+ @python -m unittest discover -s test -p ' *Test.py'
6+
7+ coverage :
8+ @coverage run -m unittest discover -s test -p ' *Test.py'
Original file line number Diff line number Diff line change @@ -24,7 +24,13 @@ The Library supports all APIs under the following services:
2424
2525## Installation
2626
27- Clone this git repository or use pip: ``` pip install Adyen ```
27+ ### For development propose
28+
29+ Clone this repository and run ``` make install ```
30+
31+ ### For usage propose
32+
33+ Use pip command: ``` pip install Adyen ```
2834
2935## Usage
3036
Original file line number Diff line number Diff line change @@ -8,3 +8,6 @@ tag_build =
88tag_date = 0
99tag_svn_revision = 0
1010
11+ [coverage:run]
12+ source =
13+ Adyen/
You can’t perform that action at this time.
0 commit comments