Richard
375bcf4e73
fix typo in artifact path
2021-09-16 15:13:19 +01:00
Richard
a42e94ce66
Fix JS build artifact
...
The JS build step was reporting the JS source folder as an artifact.
I've updated it to use the output folder instead.
2021-09-16 15:13:19 +01:00
Kaspar Emanuel
c835bf3b7e
Update readme with new js directory
2021-09-16 15:13:18 +01:00
Kaspar Emanuel
caa6284e7d
Add missing vue-config
2021-09-16 15:13:18 +01:00
Kaspar Emanuel
dd0b8b9a8b
Change static folder to js folder in gitlab-ci
2021-09-16 15:13:17 +01:00
Kaspar Emanuel
13f7252dd7
Move Vue app to a js directory
2021-09-16 15:13:17 +01:00
Richard Bowman
515bee1422
Merge branch 'check-error-in-task-submitter-response' into 'master'
...
Move error handling for taskSubmitter
See merge request openflexure/openflexure-microscope-server!138
2021-09-07 14:57:25 +00:00
Richard Bowman
74dbbf7d18
Merge branch 'expose-openapi-artifact' into 'master'
...
Make OpenAPI easier to download from a MR
See merge request openflexure/openflexure-microscope-server!139
2021-09-07 14:56:59 +00:00
Kaspar Emanuel
c5f47c922c
Merge branch 'remove-defunct-error-handler' into 'master'
...
Remove vestigial error handling code
See merge request openflexure/openflexure-microscope-server!137
2021-09-07 13:20:46 +00:00
Richard
5ba285ac15
Make OpenAPI easier to download from a MR
2021-08-26 23:38:27 +01:00
Richard
3d33218072
Move error handling for taskSubmitter
...
taskSubmitter ended up in a confused state if the initial POST request
encountered an error.
I've updated `startPolling` to return a Promise, and moved the
error handling code to the top level.
This doesn't change anything for the case where we get a non-error
response to the POST request, but means that e.g. 400 errors
get caught and displayed properly.
2021-08-26 23:12:47 +01:00
Richard
ae96340d79
Remove unused import
2021-08-23 20:53:04 +01:00
Richard Bowman
6a484514a9
Remove vestigial error handling code
...
LabThings now handles HTTPErrors properly, so I am removing
this copy-pasted workaround.
2021-08-23 16:08:50 +01:00
Richard Bowman
76a807fba5
Merge branch 'beta-release-prep' into 'master'
...
Readme, changelog, version bump
See merge request openflexure/openflexure-microscope-server!136
2021-08-19 07:36:01 +00:00
Richard Bowman
feedda87ed
Merge branch 'upload-test-reports' into 'master'
...
Generate and use pytest XML reports
See merge request openflexure/openflexure-microscope-server!135
2021-08-17 15:30:39 +00:00
Richard Bowman
3e02fe4790
Merge branch 'static-docs' into 'master'
...
Improved API docs
See merge request openflexure/openflexure-microscope-server!133
2021-08-17 11:33:40 +00:00
Richard Bowman
7860b6eda7
deleted some commented-out extensions
2021-08-17 12:18:10 +01:00
Richard Bowman
040d7d4ba6
Fix action wrapper
...
The action wrapper was using an unbound function - it
now passes the extension object as self.
We were incorrectly passing endpoint names as positional arguments -
this is fixed and I now use a keyword argument.
2021-08-17 12:11:20 +01:00
Kaspar Emanuel
6d25dcfa9e
Merge branch 'smart-stack-controls' into 'master'
...
Added controls for smart stack
See merge request openflexure/openflexure-microscope-server!134
2021-08-17 09:43:32 +00:00
Richard
8b8572f2f2
Version bump and changelog
2021-08-11 16:02:33 +01:00
Richard
512a06eb5e
Update readme
...
Added instructions for developing on Pi, downloading web app, and
fixed changelog generation (Added npx).
2021-08-11 15:31:19 +01:00
Richard
b7ca9e095c
Build and package static web app on master
2021-08-10 17:48:41 +01:00
Richard
e33e92b43a
Generate and use pytest XML reports
...
This generates XML reports when we run pytest through poe, and
uploads them in the relevant CI stage.
I've also ignored mypy cache files - I'm not sure why this hasn't
been an issue before...
2021-08-10 11:29:09 +01:00
Richard
d7d7a8cc8d
Blackened test_app.py
2021-08-09 22:01:14 +01:00
Richard
b7c15886e9
Use neater spread operator to copy objects
...
Rather than Object.assign, I now use the ... operator to
ensure that dictionaries don't pollute each other in computed
properties.
2021-08-09 21:57:52 +01:00
Richard
332ecad19b
Update caniuse-lite
2021-08-02 10:31:07 +01:00
Richard
c831937b05
Validate thing description in tests
2021-07-26 02:48:45 +01:00
Richard
5e36837e5f
Blackened tests
2021-07-25 22:59:59 +01:00
Richard
89f350cf7e
Create docs/build directory in CI
2021-07-25 22:56:47 +01:00
Richard
80cebe3ebc
Add test for valid OpenAPI
2021-07-25 22:26:52 +01:00
Richard
fe3fb5c66b
Incorporate LabThings 1.3
...
The necessary changes to produce valid OpenAPI docs are now in
the latest release of LabThings. This change updates it.
Also, isort was trying to sort my virtual environment, hence
the change to pyproject.toml.
I don't know why that happened - maybe an update to isort?
2021-07-25 22:23:54 +01:00
Richard
3cdfd52a77
Added controls for smart stack
2021-07-25 09:14:33 +01:00
Richard
1d16792681
Removing unnecessary validation code
...
I wrote test_swagger_yaml before I realised I could
validate the API with apispec directly.
2021-07-25 03:45:16 +01:00
Richard
b6228ba2d5
Removed unnecessary node junk
...
I'd briefly installed some node utilities in docs/
These are not needed, so I'm removing the associated .gitignore
2021-07-25 03:44:26 +01:00
Richard
cfba9d5c09
downgrade pylint
...
pylint 2.9 seems to die on this code, no idea why. It's a crash in
pylint rather than an error in the code I think.
2021-07-25 03:41:06 +01:00
Richard
9fa545f3fa
Typing fix
...
mypy doesn't like adding attributes to functions, so
I have used the described_operation decorator to
add type hints to the functions.
2021-07-25 03:38:20 +01:00
Richard
a8b1efb7cd
Removed openapi endpoints (now in LabThings)
2021-07-25 01:23:44 +01:00
Richard Bowman
e2990b5b38
Bump pylint version and fix to 2.8 to avoid bug
...
pylint 2.9 crashes - I can't figure out why, but it seems like it's
a bug in pylint rather than an error in our code.
We should try to track it down and get it fixed, I've seen
some similar bug reports on their github, but
all of them should be resolved in 2.9...
2021-07-21 10:49:56 +01:00
Richard
7b54abc210
blackened
2021-07-19 22:22:58 +01:00
Richard
34af06b1d1
Document route parameter in nested dictionaries
2021-07-19 22:21:39 +01:00
Richard
ec992c083f
Describe filename param in capture download
2021-07-19 21:40:28 +01:00
Richard
36be07b276
Responses and parameters for zipbuilder
2021-07-19 21:32:08 +01:00
Richard
ba0f78df84
fix typing in autofocus
...
I have an Optional dz, which is then
populated with a default if it's None.
I've added an explicit cast() to explain this to mypy.
2021-07-19 21:18:25 +01:00
Richard
72f3c11fdd
linting and typing fixes
2021-07-19 20:29:13 +01:00
Richard
b7c9d3b73b
Sorted remaining content_type issues and blackened
2021-07-19 20:09:09 +01:00
Richard
38fbe530d2
Fix externalDocs entries
...
My externalDocs entries in the "tags" metadata section
of the OpenAPI description were not valid.
This is now fixed.
2021-07-19 11:56:40 +01:00
Richard Bowman
8eba9d7981
Build and validate OpenAPI YAML description in CI
2021-07-19 10:51:42 +00:00
Richard
077d6fdc4b
Added OpenAPI validation from apispec
2021-07-19 11:50:50 +01:00
Richard
6a7c305468
Started adding more content to openapi
2021-07-14 19:15:26 +01:00
Richard
8422e8bfef
ignore local installation of swagger-cli
2021-07-13 22:54:11 +01:00