Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:

- name: All Features
env:
PHYLUM_API_KEY: ${{ secrets.PHYLUM_TOKEN_STAGING }}
PHYLUM_API_KEY: ${{ secrets.PHYLUM_TOKEN }}
run: cargo +stable test --all-features

deno-checks:
Expand Down
2 changes: 1 addition & 1 deletion cli/tests/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ use phylum_types::types::auth::RefreshToken;
use reqwest::StatusCode;
use tempfile::TempDir;

pub const API_URL: &str = "https://api.staging.phylum.io";
pub const API_URL: &str = "https://api.phylum.io";
const PROJECT_NAME: &str = "integration-tests";

#[derive(Default)]
Expand Down
4 changes: 2 additions & 2 deletions extensions/phylum.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ declare namespace Phylum {
/**
* Send a request to the Phylum REST API.
*
* See https://api.staging.phylum.io/api/v0/swagger/index.html for available API endpoints.
* See https://api.phylum.io/api/v0/swagger/index.html for available API endpoints.
*
* The `init` parameter matches the `init` parameter of the Deno `fetch` function:
* https://deno.land/api@latest?s=fetch
Expand Down Expand Up @@ -175,7 +175,7 @@ declare namespace Phylum {
* {
* is_failure: false,
* incomplete_count: 0,
* report: "# Phylum OSS Supply Chain Risk Analysis - SUCCESS\n\nThe Phylum risk analysis is complete and did not identify any issues.\n\n[View this project in the Phylum UI](https://app.staging.phylum.io/projects/739098bc-c954-4bf6-aa36-692f5483edaa?label=uncategorized)\n",
* report: "# Phylum OSS Supply Chain Risk Analysis - SUCCESS\n\nThe Phylum risk analysis is complete and did not identify any issues.\n\n[View this project in the Phylum UI](https://app.phylum.io/projects/739098bc-c954-4bf6-aa36-692f5483edaa?label=uncategorized)\n",
* output: "{\"dependencies\":[],\"errors\":[]}"
* }
* ```
Expand Down
2 changes: 1 addition & 1 deletion extensions/poetry/tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ afterAll(async () => {
});

describe("Poetry extension", () => {
// These tests may fail if the packages aren't processed on staging.
// These tests may fail if the packages aren't processed yet.

it("correctly handles the `--dry-run` argument", async () => {
const status = await phylum.runExt(
Expand Down
Loading