https://github.com/RadioAstronomySoftwareGroup/pyuvdata
Revision 4e1c3edfe13d167426e1c8fe5a9137284f9861ac authored by Garrett Keating on 07 August 2020, 02:47:23 UTC, committed by Garrett Keating on 07 August 2020, 02:47:23 UTC
1 parent df43fac
Raw File
Tip revision: 4e1c3edfe13d167426e1c8fe5a9137284f9861ac authored by Garrett Keating on 07 August 2020, 02:47:23 UTC
Adding a battery of unit tests for mir, that should hopefully verify that the test file is being correctly. Also splitting off some tests into a separate module called test_mir_parser, and adding a minor fix to data reader.
Tip revision: 4e1c3ed
.readthedocs.yml
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
  configuration: docs/conf.py

# Do not build the docs in additional formats (e.g. PDF and ePub), use default
formats: []

build:
    image: latest

# Optionally set the version of Python and requirements required to build your docs
python:
  version: 3.7
  install:
    - method: pip
      path: .
      extra_requirements:
         - doc
back to top