Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get the docs/, templates/analyses, and the templates_examples/csvs/ up-to-date #2

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 24 additions & 17 deletions .githooks/pre-commit
Original file line number Diff line number Diff line change
@@ -57,6 +57,7 @@ def main():
if not os.path.exists("./template_examples/csvs"):
os.makedirs("./template_examples/csvs")

# generate template_examples/csvs/
for template_example in os.listdir("./template_examples/"):
# remove any .csv in there, so nothing old will be left
if template_example.endswith(".csv"):
@@ -67,13 +68,16 @@ def main():
print(output)
if err:
os.exit(err)
output, err = system(
"git", "rm", os.path.join("./template_examples/", template_example)
# output, err = system(
# "git", "rm", os.path.join("./template_examples/", template_example)
# )
print(
f"would git rm {os.path.join('./template_examples/', template_example)}"
)
if output:
print(output)
if err:
os.exit(err)
# if output:
# print(output)
# if err:
# os.exit(err)

# '~$___.xlsx' is something like lockfiles for Excel
if not template_example.endswith(".xlsx") or template_example.startswith("~$"):
@@ -83,21 +87,24 @@ def main():
"./template_examples/", template_example, "./template_examples/csvs/"
)
for fname in csv_fnames:
output, err = system("git", "add", fname)
if output:
print(output)
if err:
os.exit(err)

# output, err = system("git", "add", fname)
print(f"would git add {fname}")
# if output:
# print(output)
# if err:
# os.exit(err)

# generate templates/analyses/
generate_analysis_template_schemas()
folder = os.path.join(TEMPLATE_DIR, "analyses")
for fname in os.listdir(folder):
if fname.endswith("_analysis_template.json"):
output, err = system("git", "add", os.path.join(folder, fname))
if output:
print(output)
if err:
os.exit(err)
# output, err = system("git", "add", os.path.join(folder, fname))
print(f"would git add {os.path.join(folder, fname)}")
# if output:
# print(output)
# if err:
# os.exit(err)


main()
154 changes: 77 additions & 77 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,81 +1,81 @@
name: Continuous Integration
# name: Continuous Integration

on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
# on:
# push:
# branches: ["*"]
# pull_request:
# branches: ["*"]

jobs:
test:
strategy:
matrix:
python-version: [3.8, 3.9]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.dev.txt
pip install pytest-cov
- name: Check code format with black
run: |
black --check cidc_schemas tests docs --target-version=py37
- name: Setup codeclimate test coverage reporter
run: |
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
chmod +x ./cc-test-reporter
./cc-test-reporter before-build
- name: Test with pytest
run: |
pytest --cov=cidc_schemas -v --benchmark-group-by=func
- name: Report test coverage
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
run: |
coverage xml
./cc-test-reporter after-build -t coverage.py --exit-code 0
# jobs:
# test:
# strategy:
# matrix:
# python-version: [3.8, 3.9]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/setup-python@v2
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip
# pip install -r requirements.dev.txt
# pip install pytest-cov
# - name: Check code format with black
# run: |
# black --check cidc_schemas tests docs --target-version=py37
# - name: Setup codeclimate test coverage reporter
# run: |
# curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
# chmod +x ./cc-test-reporter
# ./cc-test-reporter before-build
# - name: Test with pytest
# run: |
# pytest --cov=cidc_schemas -v --benchmark-group-by=func
# - name: Report test coverage
# env:
# CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
# run: |
# coverage xml
# ./cc-test-reporter after-build -t coverage.py --exit-code 0

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install pypa/build
run: |
python -m pip install build --user
- name: Build a binary wheel and a source tarball
run: |
python -m build --sdist --wheel --outdir dist/ .
- name: Archive the build artifacts
uses: actions/upload-artifact@v2
if: ${{ github.ref == 'refs/heads/master' }}
with:
name: build-artifacts
path: dist
# build:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - name: Set up Python 3.7
# uses: actions/setup-python@v2
# with:
# python-version: 3.7
# - name: Install pypa/build
# run: |
# python -m pip install build --user
# - name: Build a binary wheel and a source tarball
# run: |
# python -m build --sdist --wheel --outdir dist/ .
# - name: Archive the build artifacts
# uses: actions/upload-artifact@v2
# if: ${{ github.ref == 'refs/heads/master' }}
# with:
# name: build-artifacts
# path: dist

pypi-publish:
needs: [test, build]
if: ${{ github.ref == 'refs/heads/master' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
with:
name: build-artifacts
path: dist
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
skip_existing: true
verbose: true
user: ${{ secrets.PYPI_USERNAME }}
password: ${{ secrets.PYPI_PASSWORD }}
# pypi-publish:
# needs: [test, build]
# if: ${{ github.ref == 'refs/heads/master' }}
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/download-artifact@v2
# with:
# name: build-artifacts
# path: dist
# - name: Publish package to PyPI
# uses: pypa/gh-action-pypi-publish@master
# with:
# skip_existing: true
# verbose: true
# user: ${{ secrets.PYPI_USERNAME }}
# password: ${{ secrets.PYPI_PASSWORD }}
123 changes: 61 additions & 62 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -1,72 +1,71 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
# # For most projects, this workflow file will not need changing; you simply need
# # to commit it to your repository.
# #
# # You may wish to alter this file to override the set of languages analyzed,
# # or to provide custom queries or build logic.
# #
# # ******** NOTE ********
# # We have attempted to detect the languages in your repository. Please check
# # the `language` matrix defined below to confirm you have the correct set of
# # supported CodeQL languages.
# #
# name: "CodeQL"

on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
schedule:
- cron: '44 18 * * 3'
# on:
# push:
# branches: [ "master" ]
# pull_request:
# # The branches below must be a subset of the branches above
# branches: [ "master" ]
# schedule:
# - cron: '44 18 * * 3'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
# jobs:
# analyze:
# name: Analyze
# runs-on: ubuntu-latest
# permissions:
# actions: read
# contents: read
# security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'python' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
# strategy:
# fail-fast: false
# matrix:
# language: [ 'python' ]
# # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
- name: Checkout repository
uses: actions/checkout@v3
# steps:
# - name: Checkout repository
# uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
# # Initializes the CodeQL tools for scanning.
# - name: Initialize CodeQL
# uses: github/codeql-action/init@v2
# with:
# languages: ${{ matrix.language }}
# # If you wish to specify custom queries, you can do so here or in a config file.
# # By default, queries listed here will override any specified in a config file.
# # Prefix the list here with "+" to use these queries and those in the config file.


# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
# # Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# # queries: security-extended,security-and-quality

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
# # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# # If this step fails, then you should remove it and run the build manually (see below)
# - name: Autobuild
# uses: github/codeql-action/autobuild@v2

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
# # ℹ️ Command-line programs to run using the OS shell.
# # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh
# # If the Autobuild fails above, remove it and uncomment the following three lines.
# # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
# # - run: |
# # echo "Run, Build Application using script"
# # ./location_of_script_within_repo/buildscript.sh

# - name: Perform CodeQL Analysis
# uses: github/codeql-action/analyze@v2
2 changes: 1 addition & 1 deletion cidc_schemas/__init__.py
Original file line number Diff line number Diff line change
@@ -2,4 +2,4 @@

__author__ = """James Lindsay"""
__email__ = "jlindsay@jimmy.harvard.edu"
__version__ = "0.26.20"
__version__ = "0.26.21"
Loading