Skip to content

Commit

Permalink
Merge pull request #955 from danielballan/update-ci-shield
Browse files Browse the repository at this point in the history
Update CI shield in README.
  • Loading branch information
danielballan authored Dec 15, 2020
2 parents 2f5ce65 + c23b826 commit 7c20442
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
- name: Install documentation-building requirements
shell: bash -l {0}
run: |
set -vxeuo pipefail
python -m pip install -r requirements-docs.txt
python -m pip list
- name: Build Docs
shell: bash -l {0}
run: |
make -C docs/ html
run: make -C docs/ html
4 changes: 2 additions & 2 deletions .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:
- name: Install flake8
shell: bash -l {0}
run: |
set -vxeuo pipefail
python -m pip install --upgrade pip
python -m pip install flake8
python -m pip list
- name: Run flake8
shell: bash -l {0}
run: |
flake8
run: flake8
4 changes: 2 additions & 2 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
- name: Install documentation-building requirements
shell: bash -l {0}
run: |
set -vxeuo pipefail
python -m pip install -r requirements-docs.txt
python -m pip list
- name: Build Docs
shell: bash -l {0}
run: |
make -C docs/ html
run: make -C docs/ html

- name: Deploy documentation to blueskyproject.io.
# We pin to the SHA, not the tag, for security reasons.
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- name: Install test requirements
shell: bash -l {0}
run: |
set -vxeuo pipefail
python -m pip install -r requirements-test.txt
python -m pip list
Expand All @@ -44,6 +45,7 @@ jobs:
- name: Test with pytest
shell: bash -l {0}
run: |
set -vxeuo pipefail
coverage run --concurrency=thread --parallel-mode -m pytest -v -k "${TEST_CL}"
coverage combine
coverage report
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[![Build Status](https://travis-ci.org/bluesky/ophyd.svg)](https://travis-ci.org/bluesky/ophyd)
[![Build Status](https://img.shields.io/github/workflow/status/bluesky/ophyd/Unit%20Tests)](https://github.com/bluesky/ophyd/actions?query=workflow%3A%22Unit+Tests%22+branch%3Amaster)

| Name | Downloads | Version | Platforms |
| --- | --- | --- | --- |
| [![Conda Recipe](https://img.shields.io/badge/recipe-ophyd-green.svg)](https://anaconda.org/nsls2forge/ophyd) | [![Conda Downloads](https://img.shields.io/conda/dn/nsls2forge/ophyd.svg)](https://anaconda.org/nsls2forge/ophyd) | [![Conda Version](https://img.shields.io/conda/vn/nsls2forge/ophyd.svg)](https://anaconda.org/nsls2forge/ophyd) | [![Conda Platforms](https://img.shields.io/conda/pn/nsls2forge/ophyd.svg)](https://anaconda.org/nsls2forge/ophyd) |

Ophyd - EPICS Client Abstractions
=================================
Ophyd: Python Hardware Abstractions
===================================

[Documentation](https://blueskyproject.io/ophyd/)

Expand Down

0 comments on commit 7c20442

Please sign in to comment.