Skip to content

Commit

Permalink
Merge b1fdc68 into 1a08820
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdstein committed May 3, 2023
2 parents 1a08820 + b1fdc68 commit d872d7f
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/continous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ jobs:
pip install -e .
- name: Run tests
run: pytest
run: coverage run -m pytest -v

- name: Run Coveralls
if: ${{ success() }}
run: |
coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# - name: Run Coveralls
# if: ${{ success() }}
# run: |
# poetry run coveralls --service=github
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#
# - name: Echo tag name
# run: echo "Tag is ${{ github.ref }}, Deploy is ${{ startsWith(github.ref, 'refs/tags/') && matrix.python-version == 3.9}}"
#
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# gwemopt
Gravitational-wave Electromagnetic Optimization

[![Coverage Status](https://coveralls.io/repos/github/skyportal/gwemopt/badge.svg?branch=main)](https://coveralls.io/github/skyportal/gwemopt?branch=main)
[![CI](https://github.com/skyportal/gwemopt/actions/workflows/continous_integration.yml/badge.svg)](https://github.com/skyportal/gwemopt/actions/workflows/continous_integration.yml)
[![PyPI version](https://badge.fury.io/py/gwemopt.svg)](https://badge.fury.io/py/gwemopt)

The code currently can:
- interact with gracedb, download the skymaps, read them etc.
- read telescope configuration files with location, FOV, limiting magnitude, exposure times, etc.
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ def get_scripts(scripts_dir='bin'):
'freezegun',
'sqlparse',
'bs4',
"coveralls"
]

# -- run setup ----------------------------------------------------------------
Expand All @@ -89,7 +90,7 @@ def get_scripts(scripts_dir='bin'):
author='Michael Coughlin',
author_email='michael.coughlin@ligo.org',
license='GPLv3',
url='https://github.com/mcoughlin/gwemopt/',
url='https://github.com/skyportal/gwemopt/',

# package content
packages=find_packages(),
Expand All @@ -107,6 +108,8 @@ def get_scripts(scripts_dir='bin'):
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
Expand Down

0 comments on commit d872d7f

Please sign in to comment.