Skip to content

Commit b225e8b

Browse files
committed
fix environment variable specification
1 parent 2938eaf commit b225e8b

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,9 @@ jobs:
395395
uses: actions/setup-python@v4
396396
with:
397397
python-version: ${{ matrix.python-version }}
398+
- name: Set Variables
399+
# oracle bug is encountered in Linux CI - does not manifest on OSX
400+
run: echo "IGNORE_ORA_01843=True" >> $GITHUB_ENV
398401
- name: Install Poetry
399402
uses: snok/install-poetry@v1
400403
with:
@@ -414,7 +417,5 @@ jobs:
414417
poetry install -E all --with oracle
415418
poetry run pip install -U "${{ matrix.django-version }}"
416419
- name: Run Full Unit Tests
417-
env:
418-
IGNORE_ORA_01843: False
419420
run: |
420421
poetry run pytest -s

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ license = "MIT"
77
repository = "https://github.com/bckohan/django-enum"
88
homepage = "https://django-enum.readthedocs.io"
99
readme = "README.rst"
10-
keywords = ["enum", "properties", "defines", "field", "django", "database"]
10+
keywords = [
11+
"enum", "properties", "defines", "field", "django", "database",
12+
"bitmask", "mask", "bitfield", "flags"
13+
]
1114
classifiers = [
1215
"Environment :: Console",
1316
"Framework :: Django",

0 commit comments

Comments
 (0)