Commits on Source 18
-
Bump the version of pytest-cov, so that we pick up the fix for the '--no-cov' option breaking in pytest 4.0: https://github.com/pytest-dev/pytest-cov/pull/230 This was the error you would get prior to this version: _pytest.warning_types.RemovedInPytest4Warning: config.warn has been deprecated, use warnings.warn instead Although it says 'deprecated', it did result in termination with stack trace.
-
To help new folks get to grips with pytest, add some tips on other frequently used features.
-
Angelos Evripiotis authored
pytest-cov==2.6.1, contributing: '--last-failed' and '--no-cov' tips See merge request !1059
-
Tristan Van Berkom authored
Minor correction, looks like we're not observing this queue otherwise we'd be seeing crashes.
-
Tristan Van Berkom authored
_scheduler/queues/queue.py: Put elements in the skip list, not jobs See merge request !1063
-
-
Valentin David authored
.gitlab-ci.yml: Use latest freedesktop-sdk 18.08.25 Closes #858 See merge request !1064
-
Chandan Singh authored
During recent reorganizing of `.gitlab-ci.yml` to work with `tox`, seems like we missed to update the image used by the overnight aarch tests, meaning that they currently fail due to `tox` being missing from them. While these tests will be skipped on MRs usually, here is an example of what the tests look like if they are actually run with this change: https://gitlab.com/BuildStream/buildstream/-/jobs/145449561. Fixes #859.
-
Chandan Singh authored
Chandan/fix overnight aarch Closes #859 See merge request !1065
-
The path of the config file generated by testutils for completion tests is passed as regular argument, not via COMP_WORDS. Use that config file in complete_artifact() to ensure the test uses the right artifact directory.
-
Since the artifact subcommand group has been created, we have been able to tab complete both element names and artifact refs as arguments to the artifact subcommands (e.g. bst artifact log), this commit adds a test for this.
-
Tristan Van Berkom authored
completions.py: Add a test for our artifact ref autocompletions See merge request !1054
-
Javier Jardón authored
which include flatpak_repo plugin needed to build fdsdk
-
Javier Jardón authored
.gitlab-ci.yml: Use latest bst-external Closes #861 See merge request !1068
-
Chandan Singh authored
This will help us check if BuildStream is working with the latest version of dependencies, as per our constraints. This job is allowed to fail but its failure should signal that we need to add stricter constraints in some of our `.in` requirements files.
-
Chandan Singh authored
.gitlab-ci.yml: Add job to attempt to update dependencies See merge request !1038
-
Benjamin Schubert authored
Previously, we would update the state of all elements in the pipeline, everytime an element in the queue would change state. This is inefficient. We know that the only impacted elements will be the direct build reverse dependencies. We can therefore, by recording the direct build reverse dependencies, only update those and reduce the time we spend updating states.
-
Benjamin Schubert authored