summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * tests/artifactcache/artifactservice: Fix pylint issuesBenjamin Schubert2019-06-061-3/+1
| |
| * tests/artifactcache: Disable 'unused-import' checks that are pytest fixturesBenjamin Schubert2019-06-066-6/+6
| | | | | | | | | | | | | | Some imports are fixtures, that need to be in the current namespace when pytest runs. However, pylint does not know this. Disabling pylint checks on those imports
| * tests/artifactcache: Silence all 'redefined-outer-name' pylint errorsBenjamin Schubert2019-06-066-0/+18
|/ | | | | | | | | | This is due to pytest fixtures having to be named the same as the test arguments. This is a pre-requisite to enable pylint on this directory We need to do this per file as we can't blanket disable for directories. See upstream issue: https://github.com/PyCQA/pylint/issues/618
* Merge branch 'bschubert/site-consolidation' into 'master'bst-marge-bot2019-06-0642-135/+91
|\ | | | | | | | | Remove tests/testutils/site.py and move everything to buildstream/testing/_utils/site.py See merge request BuildStream/buildstream!1375
| * tests/examples/flatpak-autotools: rename HAVE_OSTREE to HAVE_OSTREE_PLUGINBenjamin Schubert2019-06-061-4/+6
| | | | | | | | | | | | What this checks does is check if the ostree plugin is installed and fully configured. Renaming to HAVE_OSTREE_PLUGIN makes it slightly more explicit
| * tests/testutils/site: Remove completely and migrate HAVE_OSTREE to examplesBenjamin Schubert2019-06-062-10/+7
| | | | | | | | | | | | The only place needing to know about OSTREE is the flatpak-autotools for the documentation. We can therefore move the OSTREE business here and remove completely the site file, ending up with a single one left.
| * tests/testutils/site: Remove unused HAVE_OSTREE_CLI variableBenjamin Schubert2019-06-061-9/+0
| |
| * test:utils/site: Consolidate IS_LINUX/WSL/Windows in a single siteBenjamin Schubert2019-06-0613-29/+13
| | | | | | | | | | | | | | | | We currently have two sites file containing redundant information. - tests/testutils/site.py: Remove IS_{LINUX,WSL,WINDOWS} - rest: Change imports to import those from buildstream/tests/_utils/site.py
| * test:utils/site: Consolidate HAVE_SANDBOX in a single site fileBenjamin Schubert2019-06-0622-33/+27
| | | | | | | | | | | | | | | | We have two different 'site' files that are redundant and both define some variables in BuildStream environment. Remove HAVE_SANDBOX from tests/testutils/site.py and change all imports to point to the other one
| * test:utils/site: Consolidate MACHINE_ARCH variable in a single placeBenjamin Schubert2019-06-069-16/+17
| | | | | | | | | | | | | | We have two different 'site' files that are redundant and both define some variables in BuildStream environment. Moving the MACHINE_ARCH to a single place.
| * test:utils/site: Consolidate arpy environment variables in a single placeBenjamin Schubert2019-06-063-7/+7
| | | | | | | | | | | | | | We have two different 'site' files that are redundant and both define some variables in BuildStream environment. Moving all the arpy related ones in a single place.
| * test:utils/site: Consolidate Lzip environment variables in a single placeBenjamin Schubert2019-06-063-7/+7
| | | | | | | | | | | | | | We have two different 'site' files that are redundant and both define some variables in BuildStream environment. Moving all the lzip related ones in a single place.
| * test:utils/site: Consolidate Bwrap environment variables in a single placeBenjamin Schubert2019-06-069-18/+19
| | | | | | | | | | | | | | We have two different 'site' files that are redundant and both define some variables in BuildStream environment. Moving all the bubblewrap related ones in a single place.
| * test:utils/site: Consolidate Git environment variables in a single placeBenjamin Schubert2019-06-067-30/+15
| | | | | | | | | | | | | | We have two different 'site' files that are redundant and both define some variables in BuildStream environment. Moving all the git related ones in a single place.
| * test:utils/site: Consolidate Bzr environment variables in a single placeBenjamin Schubert2019-06-065-15/+16
|/ | | | | | | We have two different 'site' files that are redundant and both define some variables in BuildStream environment. This is a first step in consolidating them in a single file
* Merge branch 'aevri/spawk' into 'master'bst-marge-bot2019-06-066-30/+29
|\ | | | | | | | | Rename (spawn, fork) -> 'start process' See merge request BuildStream/buildstream!1374
| * Rename (spawn, fork) -> 'start process'Angelos Evripiotis2019-06-066-30/+29
|/ | | | | | | | | | | | | | Avoid confusion by not referring to starting another process as 'spawning'. Note that 'spawn' is a process creation method, which is an alternative to forking. Say 'create child process' instead of 'fork' where it doesn't harm understanding. Although we currently only use the 'fork' method for creating subprocesses, there are reasons for us to support 'spawn' in the future. More information on forking and spawning: https://docs.python.org/3/library/multiprocessing.html#contexts-and-start-methods
* Merge branch 'jennis/fix_failing_test' into 'master'bst-marge-bot2019-06-061-2/+2
|\ | | | | | | | | Don't assert gRPC messages which may change See merge request BuildStream/buildstream!1381
| * tests/sourcecache/push.py: Less strict initialisation checkjennis/fix_failing_testJames Ennis2019-06-061-2/+2
|/ | | | | | | | When we are testing push failures, we are being too strict when we try to verify that the remote has failed to be initialized. The assertion was failing because of slightly different gRPC error messages. Now the assertion is less strict but still appropriate.
* Merge branch 'aevri/defensive_send_message' into 'master'bst-marge-bot2019-06-062-32/+38
|\ | | | | | | | | _scheduler/jobs: refactor, defensive send_message See merge request BuildStream/buildstream!1373
| * _scheduler/jobs: refactor, defensive send_messageAngelos Evripiotis2019-06-062-30/+36
| | | | | | | | | | | | | | | | | | | | | | | | Simplify the custom 'handle_message' / 'send_message' protocol by not requiring a message_type. These message types share a namespace with the base Job implementation, which could cause trouble. Introduce a new private '_send_message' to implement the old functionality. Subclasses are free to pack a message type into their own messages, this isn't necessary at present and simplifies existing subclass code.
| * jobs/job: lint fixes, overhang + unused varAngelos Evripiotis2019-06-061-2/+2
|/
* Merge branch 'bschubert/pylint-integration' into 'master'bst-marge-bot2019-06-0624-46/+116
|\ | | | | | | | | Ensure pylint runs in tests/integration See merge request BuildStream/buildstream!1376
| * tests/integration: add __init__.py file to make it a packagebschubert/pylint-integrationBenjamin Schubert2019-06-061-0/+0
| | | | | | | | | | | | | | | | tests/integration was lacking a __init__.py file, meaning it was not recognized as a python package, and thus, pylint would not check anything inside the directory. Adding __init__.py ensures we have correct checks here.
| * tests/integration: Fix mutable default argumentsBenjamin Schubert2019-06-062-2/+11
| | | | | | | | | | | | Python method default arguments should never be mutable. Using 'None' as a canary and setting them afterwards instead.
| * tests/integration/shell: Simplify if-else assignmentBenjamin Schubert2019-06-061-4/+1
| | | | | | | | Pylint was complaining about it.
| * test/integration: Fix 'wrong-import-order' pylint issuesBenjamin Schubert2019-06-063-7/+11
| |
| * tests/integration: Fix all 'unused-import' errorsBenjamin Schubert2019-06-063-9/+0
| |
| * tests/integration: Disable 'unused-import' checks that are pytest fixturesBenjamin Schubert2019-06-0623-25/+25
| | | | | | | | | | | | | | Some imports are fixtures, that need to be in the current namespace when pytest runs. However, pylint does not know this. Disabling pylint checks on those imports
| * tests/integration: Silence all 'redefined-outer-name' pylint errorsBenjamin Schubert2019-06-0623-0/+69
|/ | | | | | | | | | This is due to pytest fixtures having to be named the same as the test arguments. This is a pre-requisite to enable pylint on this directory We need to do this per file as we can't blanket disable for directories. See upstream issue: https://github.com/PyCQA/pylint/issues/618
* Merge branch 'bschubert/pylint-fixes' into 'master'James Ennis2019-06-0610-10/+30
|\ | | | | | | | | Ensure pylint runs in some tests paths See merge request BuildStream/buildstream!1378
| * tests/plugins: Enable pylint and fix problemsbschubert/pylint-fixesBenjamin Schubert2019-06-053-2/+7
| | | | | | | | | | tests/plugins was missing an __init__.py, which meant pylint was never run there.
| * tests/remoteexecution: Enable pylint and fix problemsBenjamin Schubert2019-06-053-2/+8
| | | | | | | | | | tests/remoteexecution missing an __init__.py, which meant pylint was never run there.
| * tests/sandboxes: Enable pylint and fix problemsBenjamin Schubert2019-06-054-6/+15
|/ | | | | tests/sandboxes was missing an __init__.py, which meant pylint was never run there.
* Merge branch 'bschubert/cythonize-valid-char-names' into 'master'bst-marge-bot2019-06-054-32/+59
|\ | | | | | | | | _loader/loader: cythonize valid_chars_name See merge request BuildStream/buildstream!1371
| * _loader/loader: cythonize valid_chars_nameBenjamin Schubert2019-06-054-32/+59
|/ | | | | | | | | - Create a new _loader/utils.pyx cython module for functions cythonized in the loader module. - Move valid_chars_name from loader to utils and cythonize. This function is called extensively, and easy to extract
* Merge branch 'raoul/1025-legacy-remotes' into 'master'bst-marge-bot2019-06-0514-320/+459
|\ | | | | | | | | | | | | Improved handling of legacy remotes Closes #1025 See merge request BuildStream/buildstream!1366
| * Improve legacy artifact remote handlingRaoul Hidalgo Charman2019-06-053-7/+45
| | | | | | | | | | | | | | | | | | This creates a new ArtifactRemote class, derived from CASRemote that extends initialisation to check for an artifact service. This drops the remote early rather than raising an error on method not found each time it tries to use it. Fixes #1025
| * _protos: Add new status method to artifact serviceRaoul Hidalgo Charman2019-06-053-3/+110
| | | | | | | | | | | | And update relavant grpc files. Part of #1025
| * _protos: Update generated pb2 filesRaoul Hidalgo Charman2019-06-059-310/+304
|/
* Merge branch 'aevri/split_jobs_parent_child' into 'master'bst-marge-bot2019-06-054-73/+218
|\ | | | | | | | | Split ChildJob out from Job class See merge request BuildStream/buildstream!1334
| * _scheduler/jobs/job: elaborate on 'simple' objectsAngelos Evripiotis2019-06-051-5/+12
| |
| * _scheduler/jobs/job: refactor, use send_messageAngelos Evripiotis2019-06-051-7/+5
| |
| * _scheduler/jobs/job: document send_messageAngelos Evripiotis2019-06-051-3/+13
| |
| * _scheduler/jobs: split jobs into parent and childAngelos Evripiotis2019-06-054-62/+195
| | | | | | | | | | | | | | | | | | | | Make it clearer what happens in which process by splitting out a 'ChildJob', which encapsulates the work that happens in the child process. This also makes it possible to control what is transferred to the child process. This is very useful for adding support for the 'spawn' method of creating child processes as opposed to the 'fork' method.
| * cachesizejob: remove redundant child_process_dataAngelos Evripiotis2019-06-051-3/+0
| | | | | | | | This just does the default behaviour, clearer to remove it.
| * jobs/job: Add a fullstop to Job explanationAngelos Evripiotis2019-06-051-1/+1
|/
* Merge branch 'bschubert/optimize-node_get' into 'master'bst-marge-bot2019-06-0411-77/+71
|\ | | | | | | | | Optimize _yaml.node_get See merge request BuildStream/buildstream!1370
| * _yaml: Optimize node_get to not create dummy Nodes unnecessarily.bschubert/optimize-node_getBenjamin Schubert2019-06-031-8/+8
| | | | | | | | | | This reduces considerably the number of nodes created and thus speeds up the calls to node_get.
| * _yaml.pyx: Forbid expected_type=Mapping, and remove isinstance checkBenjamin Schubert2019-06-0311-69/+63
|/ | | | | | | | | | | Calls to `isinstance` can be particularily costly. Using type() is much faster. The only known case where the `isinstance` was useful is for dictionnaries where we would ask for a 'Mapping' instead. Disallowing 'Mapping' for expected_type considerably speeds up the calls to this functions. Also add into NEWS