Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
chrabyrd committed Jan 12, 2024
1 parent 25209c8 commit c132799
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,21 @@ jobs:
with:
elasticsearch-version: 8

- name: Check for ESLint issues
- name: Check for TypeScript and ESLint issues
run: |
echo "Removing yarn.lock due to yarn v1 package resolution issues"
echo "https://github.com/iarna/wide-align/issues/63"
rm yarn.lock
yarn && yarn eslint:check
yarn && yarn eslint:check && yarn typescript:check
- name: Check for missing migrations
run: |
python manage.py makemigrations --check
- name: Run Project unit tests
run: |
python -W default::DeprecationWarning -m coverage run manage.py test tests --pattern="*.py" --settings="tests.test_settings"
- name: Report coverage
run: |
coverage report
2 changes: 1 addition & 1 deletion arches_rdm_example_project/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@
# {langcode}-{regioncode} eg: en, en-gb ....
# a list of language codes can be found here http://www.i18nguy.com/unicode/language-identifiers.html
LANGUAGES = [
('de', _('German')),
# ('de', _('German')),
('en', _('English')),
# ('en-gb', _('British English')),
# ('es', _('Spanish')),
Expand Down
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
from setuptools import setup, find_packages

setup(
name="arches_rdm_example_project",
version="0.0.1",
description="",
url="",
author="",
author_email="",
license="GNU AGPL3",
packages=find_packages(),
include_package_data=True,
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Framework :: Django :: 4.2",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)

0 comments on commit c132799

Please sign in to comment.