Skip to content
This repository was archived by the owner on Dec 29, 2024. It is now read-only.

Commit 5a32dd4

Browse files
author
ydcjeff
committed
build
1 parent d3a3d36 commit 5a32dd4

File tree

5 files changed

+16
-36
lines changed

5 files changed

+16
-36
lines changed

.circleci/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,15 @@ jobs:
1818
python -m pip install --upgrade pip
1919
sudo pip install setuptools wheel twine
2020
pip install -r requirements.txt
21+
pip install -e .
2122
- run:
2223
name: "Linting..."
2324
command: |
2425
flake8 clifold/* tests/*
26+
- run:
27+
name: "Developing locally..."
28+
command: |
29+
python3 setup.py develop
2530
- run:
2631
name: "Testing..."
2732
command: |

.github/pythonpackage.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.github/workflows/pythonpackage.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ jobs:
2828
run: |
2929
pip install flake8
3030
flake8 clifold/* tests/*
31+
- name: Develop locally
32+
run: |
33+
pip install -e .
34+
python3 setup.py develop
3135
- name: Test with pytest
3236
run: |
3337
pip install pytest

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ python:
66
# command to install dependencies
77
install:
88
- pip install -r requirements.txt
9+
- pip install -e .
910
# command to run tests
1011
script:
1112
- flake8 clifold/* tests/*
13+
- python3 setup.py develop
1214
- pytest tests/test_commands.py tests/test_main.py

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
<p align="center"><a href="https://ydcjeff.github.io/clifold" target="_blank" rel="noopener noreferrer"><img width="100" src="https://ydcjeff.github.io/clifold/logo.png" alt="Clifold logo"></a></p>
22

3+
<h2 align="center">Clifold</h2>
4+
35
<p align="center">
4-
<a href="https://circleci.com/gh/ydcjeff/clifold"><img src="https://circleci.com/gh/ydcjeff/clifold.svg?style=shield"></a>
6+
<a href="https://circleci.com/gh/ydcjeff/clifold"><img src="https://circleci.com/gh/ydcjeff/clifold.svg?style=svg"></a>
7+
<a href="https://github.com/ydcjeff/clifold/actions"><img src="https://github.com/ydcjeff/clifold/workflows/Python%20package/badge.svg?branch=master"></a>
8+
<a href="https://travis-ci.com/github/ydcjeff/clifold"><img src="https://travis-ci.com/ydcjeff/clifold.svg?branch=master"></a>
59
</p>
610

7-
<h2 align="center">Clifold</h2>
811

912
Clifold is a command line tool that can quickly scaffold the python projects.
1013

0 commit comments

Comments
 (0)