[Sweep GHA Fix] The GitHub Actions run failed with... #9
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This pull request includes the following changes:
.flake8
file to increase themax-line-length
from 100 to 200.Makefile
to remove the@
symbol from theformat
andformat-check
commands.openoligo/api/helpers.py
file to replace theSynthesisQueue
model withSynthesisTask
in various functions.openoligo/api/models.py
file to add new enums (InstrumentHealth
,Backbone
,Nucleobase
,Sugar
,SolidSupport
) and a new dataclass (NucleobaseInfo
).openoligo/api/models.py
file to replace theSynthesisQueue
model withSynthesisTask
in theupdate_task_status
,set_started_now
,set_completed_now
,set_failed_now
,set_task_in_progress
,set_log_file
,get_log_file
,set_org_id
,create_new_reactant
, andget_next_task
functions.openoligo/hal/board.py
file to replace theNoSuchPinInPinout
exception withNoSuchPinInPinoutError
.openoligo/hal/instrument.py
file to replace theOneSourceException
andOneDestinationException
exceptions withOneSourceError
andOneDestinationError
.openoligo/hal/platform.py
file to remove the unusedis_bb
function.openoligo/hal/types.py
file to replace theNoSuchPinInPinout
exception withNoSuchPinInPinoutError
.openoligo/scripts/runner.py
file to replace theSynthesisQueue
model withSynthesisTask
in theworker
function.openoligo/scripts/server.py
file to replace theSynthesisQueue
model withSynthesisTask
in theadd_a_task_to_synthesis_queue
,get_all_tasks_in_synthesis_queue
,update_a_synthesis_task
,delete_synthesis_task_by_id
, andget_task_by_id
functions.openoligo/utils/singleton.py
file to remove the unusedSingleton
metaclass.openoligo/utils/wait.py
file to remove the unused imports.pyproject.toml
file to remove the unusedredis
andtypes-redis
dependencies.setup.py
file to add a description for the library.tests/api/test_helpers.py
file to replace theSynthesisQueue
model withSynthesisTask
in the tests.tests/api/test_models.py
file to replace theSynthesisQueue
model withSynthesisTask
in the tests.tests/api/test_server.py
file to add tests for theget_all_tasks_in_synthesis_queue
andget_task_by_id
functions.tests/hal/test_devices.py
file to replace theOneDestinationException
andOneSourceException
exceptions withOneDestinationError
andOneSourceError
.tests/hal/test_instrument.py
file to replace theOneDestinationException
andOneSourceException
exceptions withOneDestinationError
andOneSourceError
.tests/test_examples.py
file to remove the unused import.