Skip to content

Commit

Permalink
added develop script
Browse files Browse the repository at this point in the history
  • Loading branch information
iskandr committed Jan 15, 2024
1 parent b83e3a0 commit 31e1647
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 89 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

# TODO:
# - cache this directory $HOME/.cache/pyensembl/
# - update coveralls
# - get a badge for tests passing
# - download binary dependencies from conda
name: Tests

on: [push, pull_request]

jobs:
Expand All @@ -14,7 +18,8 @@ jobs:
python-version: ["3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
Expand All @@ -23,7 +28,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
python -m pip install flake8 pytest coveralls
pip install -r requirements.txt
pip install .
- name: Lint with flake8
Expand Down
3 changes: 3 additions & 0 deletions develop.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
set -e

pip install -e .
Loading

0 comments on commit 31e1647

Please sign in to comment.