Skip to content

Commit

Permalink
Merge pull request #296 from WilliamJamieson/testing/add_asdf-develop…
Browse files Browse the repository at this point in the history
…ment

Add asdf development testing
  • Loading branch information
eslavich committed Feb 16, 2022
2 parents 73b1df5 + bf4cc1c commit b60f841
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,32 @@ jobs:
pip install tox
- name: Run tox
run: tox -e ${{ matrix.toxenv }}

asdf-dev:
name: Run asdf-development tests
runs-on: ubuntu-latest
steps:
- name: Checkout asdf-standard
uses: actions/checkout@v2
with:
fetch-depth: 0
path: asdf-standard
- name: Checkout asdf-dev
uses: actions/checkout@v2
with:
fetch-depth: 0
repository: asdf-format/asdf
ref: master
path: asdf
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install asdf-standard
run: cd asdf-standard && pip install .
- name: Install asdf
run: cd asdf && pip install -e .[tests]
- name: Pip Freeze
run: pip freeze
- name: Run asdf-development tests
run: cd asdf && pytest
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
ASDF standard 1.6.0
===================
![CI](https://github.com/asdf-format/asdf-standard/workflows/CI/badge.svg)
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)

This document describes the Advanced Scientific Data Format (ASDF),
pronounced *AZ*-diff. You can read the full specification at [the online documentation](http://asdf-standard.readthedocs.io/).
Expand Down

0 comments on commit b60f841

Please sign in to comment.