Skip to content
This repository was archived by the owner on Aug 19, 2022. It is now read-only.

Commit a32a5bc

Browse files
authored
Circle Fixes (#4)
* Add circle config * Add docker image * build * requests * pipenv * mkdir * fix * Circle badge
1 parent 228ad5f commit a32a5bc

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

.circleci/config.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
version: 2.1
22
jobs:
33
build:
4+
docker:
5+
- image: circleci/python:3.6.8
46
working_directory: ~/wayscript-python
57
steps:
68
- checkout
7-
- run: sudo chown -R circleci:circleci /usr/local/bin
8-
- run: sudo chown -R circleci:circleci /usr/local/lib/python3.6/site-packages
99
- run:
10+
name: chown
11+
command: |
12+
sudo chown -R circleci:circleci /usr/local/bin
13+
sudo chown -R circleci:circleci /usr/local/lib/python3.6/site-packages
14+
- run:
15+
name : Install
1016
command: |
1117
sudo pip install pipenv
1218
pipenv install
19+
pipenv run pip install requests
1320
- run:
21+
name: Run tests
1422
command: |
1523
pipenv run python -m unittest discover
16-
- store_test_results:
17-
path: test-results
18-
- store_artifacts:
19-
path: test-results
20-
destination: tr1

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# [<img src="https://user-images.githubusercontent.com/31461850/53454621-a1b39500-39dc-11e9-9b3c-276451d42437.png" width="155px" alt="WayScript" align="center">](https://wayscript.com) Python SDK
22

3+
[![CircleCI](https://circleci.com/gh/wayscript/wayscript-python/tree/master.svg?style=shield)](https://circleci.com/gh/wayscript/wayscript-python/tree/master)
4+
35
### A new way to build software.
46

57
* WayScript gives you flexible building blocks to seamlessly integrate, automate and host tools in the cloud. Unlock new potential with drag and drop programming.

0 commit comments

Comments
 (0)