piotr-szuberski edited a comment on pull request #12145:
URL: https://github.com/apache/beam/pull/12145#issuecomment-652560391
Unfortunately the python test is taken by tox precommit suites - I suppose
it shouldn't?
Btw in which suites should this test be running? postCommitPortable?
Other xlang tests have some skipIfs, e.g.:
```
@unittest.skipUnless(
os.environ.get('EXPANSION_PORT'))
```
But they are really using those env variables and my test doesn't need any
setup. How would you suggest to solve it?
For now I added, like in sql_test
```
@unittest.skipIf(
TestPipeline().get_pipeline_options().view_as(StandardOptions).runner is
None,
"Must be run with a runner that supports staging java artifacts.")
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]