Skip to content

Commit

Permalink
chore: delete IS_LOCAL env
Browse files Browse the repository at this point in the history
  • Loading branch information
slowbackspace committed Mar 21, 2024
1 parent e3c10e6 commit 728f66e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ in
machine.wait_for_open_port(3000)
machine.succeed("cp -r ${blockfrost-tests} /tmp/tests")
machine.succeed(
"cd /tmp/tests && NIX_PATH=nixpkgs=${nixpkgs} nix-shell --run 'SERVER_URL=http://localhost:3000/ IS_LOCAL=true SERVICE_NAME=ryo yarn test:mainnet --run' >&2"
"cd /tmp/tests && NIX_PATH=nixpkgs=${nixpkgs} nix-shell --run 'SERVER_URL=http://localhost:3000/ SERVICE_NAME=ryo yarn test:mainnet --run' >&2"
)
'';
};
Expand Down Expand Up @@ -128,7 +128,7 @@ in
machine.wait_for_open_port(3000)
machine.succeed("cp -r ${blockfrost-tests} /tmp/tests")
machine.succeed(
"cd /tmp/tests && NIX_PATH=nixpkgs=${nixpkgs} nix-shell --run 'SERVER_URL=http://localhost:3000/ IS_LOCAL=true SERVICE_NAME=ryo yarn test:preview --run' >&2"
"cd /tmp/tests && NIX_PATH=nixpkgs=${nixpkgs} nix-shell --run 'SERVER_URL=http://localhost:3000/ SERVICE_NAME=ryo yarn test:preview --run' >&2"
)
'';
};
Expand Down Expand Up @@ -164,7 +164,7 @@ in
machine.wait_for_open_port(3000)
machine.succeed("cp -r ${blockfrost-tests} /tmp/tests")
machine.succeed(
"cd /tmp/tests && NIX_PATH=nixpkgs=${nixpkgs} nix-shell --run 'SERVER_URL=http://localhost:3000/ IS_LOCAL=true SERVICE_NAME=ryo yarn test:preprod --run' >&2"
"cd /tmp/tests && NIX_PATH=nixpkgs=${nixpkgs} nix-shell --run 'SERVER_URL=http://localhost:3000/ SERVICE_NAME=ryo yarn test:preprod --run' >&2"
)
'';
};
Expand Down

0 comments on commit 728f66e

Please sign in to comment.