Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixops
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e71158778401
Choose a base ref
...
head repository: NixOS/nixops
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f09e03f43489
Choose a head ref
  • 1 commit
  • 49 files changed
  • 1 contributor

Commits on Apr 27, 2020

  1. Revert testing commits

    These were never supposed to be pushed to master.
    adisbladis committed Apr 27, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    veprbl Dmitry Kalinkin
    Copy the full SHA
    f09e03f View commit details
Showing with 14 additions and 424 deletions.
  1. +0 −9 .github/workflows/ci.yml
  2. +0 −8 ci/run-functional.sh
  3. +0 −14 tests/functional-1.7/__init__.py
  4. +14 −0 tests/functional/__init__.py
  5. +0 −51 tests/functional/container/configuration.nix
  6. +0 −18 tests/functional/container/default.nix
  7. +0 −16 tests/functional/deployment/deployment.nix
  8. 0 tests/{functional-1.7 → functional}/ec2-rds-dbinstance-with-sg.nix
  9. 0 tests/{functional-1.7 → functional}/ec2-rds-dbinstance.nix
  10. 0 tests/{functional-1.7 → functional}/ec2_with_nvme_device_mapping.nix
  11. 0 tests/{functional-1.7 → functional}/generic_deployment_test.py
  12. 0 tests/{functional-1.7 → functional}/invalid-identifier.nix
  13. +0 −32 tests/functional/networks/trivial/network.nix
  14. 0 tests/{functional-1.7 → functional}/single_machine_ec2_base.nix
  15. 0 tests/{functional-1.7 → functional}/single_machine_ec2_base_nvme.nix
  16. 0 tests/{functional-1.7 → functional}/single_machine_ec2_ebs.nix
  17. 0 tests/{functional-1.7 → functional}/single_machine_ec2_raid-0-nvme.nix
  18. 0 tests/{functional-1.7 → functional}/single_machine_ec2_raid-0.nix
  19. 0 tests/{functional-1.7 → functional}/single_machine_ec2_spot_instance.nix
  20. 0 tests/{functional-1.7 → functional}/single_machine_elsewhere_key.nix
  21. 0 tests/{functional-1.7 → functional}/single_machine_gce_base.nix
  22. 0 tests/{functional-1.7 → functional}/single_machine_has_hello.nix
  23. 0 tests/{functional-1.7 → functional}/single_machine_libvirtd_base.nix
  24. 0 tests/{functional-1.7 → functional}/single_machine_logical_base.nix
  25. 0 tests/{functional-1.7 → functional}/single_machine_outputs.nix
  26. 0 tests/{functional-1.7 → functional}/single_machine_outputs_mod.nix
  27. 0 tests/{functional-1.7 → functional}/single_machine_rollback.nix
  28. 0 tests/{functional-1.7 → functional}/single_machine_secret_key.nix
  29. 0 tests/{functional-1.7 → functional}/single_machine_test.py
  30. +0 −7 tests/functional/snakeoil/id_ed25519
  31. +0 −1 tests/functional/snakeoil/id_ed25519.pub
  32. 0 tests/{functional-1.7 → functional}/test_backups.py
  33. 0 tests/{functional-1.7 → functional}/test_cloning_clones.py
  34. 0 tests/{functional-1.7 → functional}/test_deleting_deletes.py
  35. +0 −268 tests/functional/test_deploy.py
  36. 0 tests/{functional-1.7 → functional}/test_deploys_nixos.py
  37. 0 tests/{functional-1.7 → functional}/test_deploys_spot_instance.py
  38. 0 tests/{functional-1.7 → functional}/test_ec2_rds_dbinstance.py
  39. 0 tests/{functional-1.7 → functional}/test_ec2_with_nvme_device_mapping.py
  40. 0 tests/{functional-1.7 → functional}/test_invalid_identifier.py
  41. 0 tests/{functional-1.7 → functional}/test_output_creates.py
  42. 0 tests/{functional-1.7 → functional}/test_query_deployments.py
  43. 0 tests/{functional-1.7 → functional}/test_rebooting_reboots.py
  44. 0 tests/{functional-1.7 → functional}/test_rollback_rollsback.py
  45. 0 tests/{functional-1.7 → functional}/test_send_keys_sends_keys.py
  46. 0 tests/{functional-1.7 → functional}/test_starting_starts.py
  47. 0 tests/{functional-1.7 → functional}/test_stopping_stops.py
  48. 0 tests/{functional-1.7 → functional}/vpc.nix
  49. 0 tests/{functional-1.7 → functional}/vpc.py
9 changes: 0 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -59,12 +59,3 @@ jobs:
uses: cachix/install-nix-action@v8
- name: Coverage
run: './ci/check-tests.sh'
functional:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Nix
uses: cachix/install-nix-action@v8
- name: Functional
run: './ci/run-functional.sh'
8 changes: 0 additions & 8 deletions ci/run-functional.sh

This file was deleted.

14 changes: 0 additions & 14 deletions tests/functional-1.7/__init__.py

This file was deleted.

14 changes: 14 additions & 0 deletions tests/functional/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import os
from os import path
import nixops.statefile
from tests import db_file


class DatabaseUsingTest(object):
_multiprocess_can_split_ = True

def setup(self):
self.sf = nixops.statefile.StateFile(db_file)

def teardown(self):
self.sf.close()
51 changes: 0 additions & 51 deletions tests/functional/container/configuration.nix

This file was deleted.

18 changes: 0 additions & 18 deletions tests/functional/container/default.nix

This file was deleted.

16 changes: 0 additions & 16 deletions tests/functional/deployment/deployment.nix

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
32 changes: 0 additions & 32 deletions tests/functional/networks/trivial/network.nix

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 0 additions & 7 deletions tests/functional/snakeoil/id_ed25519

This file was deleted.

1 change: 0 additions & 1 deletion tests/functional/snakeoil/id_ed25519.pub

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
268 changes: 0 additions & 268 deletions tests/functional/test_deploy.py

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.